summaryrefslogtreecommitdiffstats
path: root/nest/iface.h
diff options
context:
space:
mode:
Diffstat (limited to 'nest/iface.h')
-rw-r--r--nest/iface.h2
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