~brightbox/bird/debian-packaging

« back to all changes in this revision

Viewing changes to proto/rip/rip.c

  • Committer: Ondřej Surý
  • Date: 2013-11-25 14:59:24 UTC
  • Revision ID: git-v1:a3c058b8752bd98df2231ac88d94931fdb4e0c65
New upstream version 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
#define P ((struct rip_proto *) p)
64
64
#define P_CF ((struct rip_proto_config *)p->cf)
65
65
 
 
66
#undef TRACE
66
67
#define TRACE(level, msg, args...) do { if (p->debug & level) { log(L_TRACE "%s: " msg, p->name , ## args); } } while(0)
67
68
 
68
69
static struct rip_interface *new_iface(struct proto *p, struct iface *new, unsigned long flags, struct iface_patt *patt);