diff options
author | Martin Mares <mj@ucw.cz> | 1998-05-24 11:20:59 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-05-24 11:20:59 +0200 |
commit | 235562ca5ac1db2e2ea026bff42c8c2a898b44db (patch) | |
tree | f1c122a17960b12755ecbef8ef3e6039178ff61e | |
parent | 480effedac0ae45a4f01ce32bac962db08ba5a3d (diff) | |
download | bird-235562ca5ac1db2e2ea026bff42c8c2a898b44db.tar bird-235562ca5ac1db2e2ea026bff42c8c2a898b44db.zip |
Point-to-point links: added address of the opposite end.
-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 8051363..7a36362 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 */ }; |