summaryrefslogtreecommitdiff
path: root/zebra/interface.h
diff options
context:
space:
mode:
authorhasso <hasso>2004-06-12 14:33:05 +0000
committerhasso <hasso>2004-06-12 14:33:05 +0000
commitca7769881ffb700c86b606ead5f4177df3c0b2a1 (patch)
treeb3a199ce94246b34b10d8d20030d27d2f4c5197f /zebra/interface.h
parent02ff83c52592427623db0d8367ca9b3395fa321f (diff)
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.h9
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);