Use '%I' instead of dirty address printing hacks.
This commit is contained in:
parent
d997534f65
commit
962ba482fd
3 changed files with 7 additions and 7 deletions
|
@ -95,7 +95,7 @@ neigh_find(struct proto *p, ip_addr *a, unsigned flags)
|
||||||
void
|
void
|
||||||
neigh_dump(neighbor *n)
|
neigh_dump(neighbor *n)
|
||||||
{
|
{
|
||||||
debug("%p %08x ", n, _I(n->addr));
|
debug("%p %I ", n, n->addr);
|
||||||
if (n->iface)
|
if (n->iface)
|
||||||
debug("%s ", n->iface->name);
|
debug("%s ", n->iface->name);
|
||||||
else
|
else
|
||||||
|
@ -129,7 +129,7 @@ neigh_if_up(struct iface *i)
|
||||||
n->iface = i;
|
n->iface = i;
|
||||||
n->sibling = i->neigh;
|
n->sibling = i->neigh;
|
||||||
i->neigh = n;
|
i->neigh = n;
|
||||||
DBG("Waking up sticky neighbor %08x\n", _I(n->addr));
|
DBG("Waking up sticky neighbor %I\n", n->addr);
|
||||||
if (n->proto->neigh_notify)
|
if (n->proto->neigh_notify)
|
||||||
n->proto->neigh_notify(n);
|
n->proto->neigh_notify(n);
|
||||||
}
|
}
|
||||||
|
@ -143,7 +143,7 @@ neigh_if_down(struct iface *i)
|
||||||
for(m=i->neigh; n = m;)
|
for(m=i->neigh; n = m;)
|
||||||
{
|
{
|
||||||
m = n->sibling;
|
m = n->sibling;
|
||||||
DBG("Flushing neighbor %08x on %s\n", _I(n->addr), n->iface->name);
|
DBG("Flushing neighbor %I on %s\n", n->addr, n->iface->name);
|
||||||
n->iface = NULL;
|
n->iface = NULL;
|
||||||
if (n->proto->neigh_notify)
|
if (n->proto->neigh_notify)
|
||||||
n->proto->neigh_notify(n);
|
n->proto->neigh_notify(n);
|
||||||
|
@ -185,7 +185,7 @@ if_dump(struct iface *i)
|
||||||
if (i->flags & IF_IGNORE)
|
if (i->flags & IF_IGNORE)
|
||||||
debug(" IGN");
|
debug(" IGN");
|
||||||
debug(" MTU=%d\n", i->mtu);
|
debug(" MTU=%d\n", i->mtu);
|
||||||
debug("\t%08x, net %08x/%-2d bc %08x -> %08x\n", _I(i->ip), _I(i->prefix), i->pxlen, _I(i->brd), _I(i->opposite));
|
debug("\t%I, net %I/%-2d bc %I -> %I\n", i->ip, i->prefix, i->pxlen, i->brd, i->opposite);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -144,9 +144,9 @@ rta_dump(rta *a)
|
||||||
debug(" EXT");
|
debug(" EXT");
|
||||||
if (a->flags & RTF_TAGGED)
|
if (a->flags & RTF_TAGGED)
|
||||||
debug(" TAG");
|
debug(" TAG");
|
||||||
debug(" <-%08x", _I(a->from));
|
debug(" <-%I", a->from);
|
||||||
if (a->dest == RTD_ROUTER)
|
if (a->dest == RTD_ROUTER)
|
||||||
debug(" ->%08x", _I(a->gw));
|
debug(" ->%I", a->gw);
|
||||||
if (a->dest == RTD_DEVICE || a->dest == RTD_ROUTER)
|
if (a->dest == RTD_DEVICE || a->dest == RTD_ROUTER)
|
||||||
debug(" [%s]", a->iface->name);
|
debug(" [%s]", a->iface->name);
|
||||||
}
|
}
|
||||||
|
|
|
@ -185,7 +185,7 @@ void
|
||||||
rte_dump(net *n, rte *e)
|
rte_dump(net *n, rte *e)
|
||||||
{
|
{
|
||||||
if (n)
|
if (n)
|
||||||
debug("%08x/%2d ", _I(n->n.prefix), n->n.pxlen);
|
debug("%1I/%2d ", n->n.prefix, n->n.pxlen);
|
||||||
debug("PF=%02x pref=%d lm=%d ", e->pflags, e->pref, e->lastmod);
|
debug("PF=%02x pref=%d lm=%d ", e->pflags, e->pref, e->lastmod);
|
||||||
rta_dump(e->attrs);
|
rta_dump(e->attrs);
|
||||||
if (e->flags & REF_CHOSEN)
|
if (e->flags & REF_CHOSEN)
|
||||||
|
|
Loading…
Reference in a new issue