summaryrefslogtreecommitdiff
path: root/zebra/zapi_msg.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2023-09-04 15:20:56 +0300
committerGitHub <noreply@github.com>2023-09-04 15:20:56 +0300
commitff542b22d219107bede01c74b426ddda87c7a31d (patch)
treecd8a2a63973fc488b7d452b547035ebac82a2c1a /zebra/zapi_msg.c
parent640b59a8b0d87337fef336950e7ebf94a3344a7f (diff)
parent7b8a4249ea9481ced4a5c29a7b5cacc0e3acb80d (diff)
Merge pull request #14340 from mjstapp/txqlen_info
lib,zebra: add tx queuelen to interface struct
Diffstat (limited to 'zebra/zapi_msg.c')
-rw-r--r--zebra/zapi_msg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c
index f6afb006b7..6bed6d8727 100644
--- a/zebra/zapi_msg.c
+++ b/zebra/zapi_msg.c
@@ -71,6 +71,7 @@ static void zserv_encode_interface(struct stream *s, struct interface *ifp)
stream_putc(s, ifp->ptm_status);
stream_putl(s, ifp->metric);
stream_putl(s, ifp->speed);
+ stream_putl(s, ifp->txqlen);
stream_putl(s, ifp->mtu);
stream_putl(s, ifp->mtu6);
stream_putl(s, ifp->bandwidth);