diff options
author | paul <paul> | 2002-12-13 22:03:13 +0100 |
---|---|---|
committer | paul <paul> | 2002-12-13 22:03:13 +0100 |
commit | 2e3b2e474ed5ba04744b167132a84f9954485af4 (patch) | |
tree | cc07fb34a1bf21ead5cc3ad69e4a9dfde2b43b0e /zebra/zserv.c | |
parent | ospfd Point-to-Multipoint support (diff) | |
download | frr-2e3b2e474ed5ba04744b167132a84f9954485af4.tar.xz frr-2e3b2e474ed5ba04744b167132a84f9954485af4.zip |
zebra link state detection support
Diffstat (limited to 'zebra/zserv.c')
-rw-r--r-- | zebra/zserv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c index 47114ab33..d447d0650 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -96,6 +96,7 @@ zsend_interface_add (struct zserv *client, struct interface *ifp) /* Interface information. */ stream_put (s, ifp->name, INTERFACE_NAMSIZ); stream_putl (s, ifp->ifindex); + stream_putc (s, ifp->status); stream_putl (s, ifp->flags); stream_putl (s, ifp->metric); stream_putl (s, ifp->mtu); @@ -134,6 +135,7 @@ zsend_interface_delete (struct zserv *client, struct interface *ifp) stream_putc (s, ZEBRA_INTERFACE_DELETE); stream_put (s, ifp->name, INTERFACE_NAMSIZ); stream_putl (s, ifp->ifindex); + stream_putc (s, ifp->status); stream_putl (s, ifp->flags); stream_putl (s, ifp->metric); stream_putl (s, ifp->mtu); @@ -256,6 +258,7 @@ zsend_interface_up (struct zserv *client, struct interface *ifp) /* Interface information. */ stream_put (s, ifp->name, INTERFACE_NAMSIZ); stream_putl (s, ifp->ifindex); + stream_putc (s, ifp->status); stream_putl (s, ifp->flags); stream_putl (s, ifp->metric); stream_putl (s, ifp->mtu); @@ -288,6 +291,7 @@ zsend_interface_down (struct zserv *client, struct interface *ifp) /* Interface information. */ stream_put (s, ifp->name, INTERFACE_NAMSIZ); stream_putl (s, ifp->ifindex); + stream_putc (s, ifp->status); stream_putl (s, ifp->flags); stream_putl (s, ifp->metric); stream_putl (s, ifp->mtu); |