diff options
author | hasso <hasso> | 2004-06-12 16:33:05 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-06-12 16:33:05 +0200 |
commit | ca7769881ffb700c86b606ead5f4177df3c0b2a1 (patch) | |
tree | b3a199ce94246b34b10d8d20030d27d2f4c5197f /zebra/interface.c | |
parent | 2004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com> (diff) | |
download | frr-ca7769881ffb700c86b606ead5f4177df3c0b2a1.tar.xz frr-ca7769881ffb700c86b606ead5f4177df3c0b2a1.zip |
OK, here it is - irdp support. But don't expect me to fix any bugs in it.
Diffstat (limited to 'zebra/interface.c')
-rw-r--r-- | zebra/interface.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index 748bf00d6..3a7a5919a 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -39,6 +39,7 @@ #include "zebra/zserv.h" #include "zebra/redistribute.h" #include "zebra/debug.h" +#include "zebra/irdp.h" /* Allocate a new internal interface index * This works done from the top so that %d macros @@ -1419,6 +1420,10 @@ if_config_write (struct vty *vty) rtadv_config_write (vty, ifp); #endif /* RTADV */ +#ifdef HAVE_IRDP + irdp_config_write (vty, ifp); +#endif /* IRDP */ + vty_out (vty, "!%s", VTY_NEWLINE); } return 0; |