n->sibling = NULL;
n->proto = p;
n->data = NULL;
+ n->aux = 0;
n->flags = flags;
return n;
}
debug("%s ", n->iface->name);
else
debug("[] ");
- debug("%s %p", n->proto->name, n->data);
+ debug("%s %p %08x", n->proto->name, n->data, n->aux);
if (n->flags & NEF_STICKY)
debug(" STICKY");
debug("\n");
struct neighbor *sibling; /* Next in per-device chain */
struct proto *proto; /* Protocol this belongs to */
void *data; /* Protocol-specific data */
+ unsigned aux; /* Protocol-specific data */
unsigned flags;
} neighbor;