From 7b8a4249ea9481ced4a5c29a7b5cacc0e3acb80d Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Fri, 1 Sep 2023 10:06:10 -0400 Subject: lib,zebra: add tx queuelen to interface struct Add the txqlen attribute to the common interface struct. Capture the value in zebra, and distribute it through the interface lib module's zapi messaging. Signed-off-by: Mark Stapp --- lib/zclient.c | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/zclient.c') diff --git a/lib/zclient.c b/lib/zclient.c index e40725826a..68a3429822 100644 --- a/lib/zclient.c +++ b/lib/zclient.c @@ -2761,6 +2761,7 @@ static void zebra_interface_if_set_value(struct stream *s, STREAM_GETC(s, ifp->ptm_status); STREAM_GETL(s, ifp->metric); STREAM_GETL(s, ifp->speed); + STREAM_GETL(s, ifp->txqlen); STREAM_GETL(s, ifp->mtu); STREAM_GETL(s, ifp->mtu6); STREAM_GETL(s, ifp->bandwidth); -- cgit v1.2.3