diff options
author | hasso <hasso> | 2004-06-12 14:33:05 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-06-12 14:33:05 +0000 |
commit | 1a14c4f73267791874bf713fc9df93f0714defd6 (patch) | |
tree | 2579d8b99ac35e1ccbbb42552b884a9668955937 /zebra/interface.h | |
parent | 53f480a818e0bc7ca7dd7fd4c8fcacabad376fd8 (diff) | |
download | quagga-1a14c4f73267791874bf713fc9df93f0714defd6.tar.bz2 quagga-1a14c4f73267791874bf713fc9df93f0714defd6.tar.xz |
OK, here it is - irdp support. But don't expect me to fix any bugs in it.
Diffstat (limited to 'zebra/interface.h')
-rw-r--r-- | zebra/interface.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/zebra/interface.h b/zebra/interface.h index 3ab624f2..c1f9f71c 100644 --- a/zebra/interface.h +++ b/zebra/interface.h @@ -19,6 +19,10 @@ * 02111-1307, USA. */ +#ifdef HAVE_IRDP +#include "zebra/irdp.h" +#endif + /* For interface multicast configuration. */ #define IF_ZEBRA_MULTICAST_UNSPEC 0 #define IF_ZEBRA_MULTICAST_ON 1 @@ -153,6 +157,11 @@ struct zebra_if #ifdef RTADV struct rtadvconf rtadv; #endif /* RTADV */ + +#ifdef HAVE_IRDP + struct irdp_interface irdp; +#endif + }; void if_delete_update (struct interface *ifp); |