diff options
author | Martin Mares <mj@ucw.cz> | 1998-05-03 18:42:45 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-05-03 18:42:45 +0200 |
commit | a8b6038225d18155883e330c96b2bc2e44153e1e (patch) | |
tree | 8a0479eb663d4673757f892eb795d675c264340c /nest/iface.h | |
parent | 6032aa6ade49545d7c8b6025cf6e6373eb7c910c (diff) | |
download | bird-a8b6038225d18155883e330c96b2bc2e44153e1e.tar bird-a8b6038225d18155883e330c96b2bc2e44153e1e.zip |
Next attempt on data structures...
Diffstat (limited to 'nest/iface.h')
-rw-r--r-- | nest/iface.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/iface.h b/nest/iface.h index aa8a135..8051363 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -15,6 +15,7 @@ struct iface { node n; char *name; unsigned flags; + unsigned mtu; struct ifa *ifa; /* First address is primary */ }; @@ -33,6 +34,7 @@ struct ifa { ip_addr prefix; /* Network prefix */ unsigned pxlen; /* Prefix length */ ip_addr brd; /* Broadcast address */ + struct neighbor *neigh; /* List of neighbors on this interface */ }; #endif |