diff options
author | Martin Mares <mj@ucw.cz> | 1999-12-01 12:59:24 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-12-01 12:59:24 +0100 |
commit | 5954dcfab74c8d8a2774f259c9940c1d87e76518 (patch) | |
tree | ce7d62d1eac131cd6f5a947fccec010f5247c9b1 /nest/iface.h | |
parent | afa8937ac8433a7cb430a14f7613e8d0555f1149 (diff) | |
download | bird-5954dcfab74c8d8a2774f259c9940c1d87e76518.tar bird-5954dcfab74c8d8a2774f259c9940c1d87e76518.zip |
Introduced new protocol-dependent integer field `aux' to struct neighbor.
Diffstat (limited to 'nest/iface.h')
-rw-r--r-- | nest/iface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nest/iface.h b/nest/iface.h index bee9caf..87c4e93 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -100,6 +100,7 @@ typedef struct neighbor { 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; |