diff options
author | Martin Mares <mj@ucw.cz> | 1998-05-24 09:20:59 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-05-24 09:20:59 +0000 |
commit | 235562ca5ac1db2e2ea026bff42c8c2a898b44db (patch) | |
tree | f1c122a17960b12755ecbef8ef3e6039178ff61e /nest/iface.h | |
parent | 480effedac0ae45a4f01ce32bac962db08ba5a3d (diff) |
Point-to-point links: added address of the opposite end.
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 8051363a..7a363621 100644 --- a/nest/iface.h +++ b/nest/iface.h @@ -34,6 +34,7 @@ struct ifa { ip_addr prefix; /* Network prefix */ unsigned pxlen; /* Prefix length */ ip_addr brd; /* Broadcast address */ + ip_addr opposite; /* Opposite end of a point-to-point link */ struct neighbor *neigh; /* List of neighbors on this interface */ }; |