diff options
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); |