summaryrefslogtreecommitdiff
path: root/zebra/zapi_msg.c
diff options
context:
space:
mode:
authorRenato Westphal <renato@opensourcerouting.org>2019-01-18 16:06:00 -0200
committerRenato Westphal <renato@opensourcerouting.org>2019-01-18 16:06:00 -0200
commitf20b478ef3d25e153939516a473bb2e80603cbd5 (patch)
tree019f3bea176957a24c315d658f7a612137ede054 /zebra/zapi_msg.c
parent70fc94ca1d6063b64449b0971678521c021ac916 (diff)
zebra: fix checking of clients subscribed to receive interface info
client->ifinfo is a VRF bitmap, hence we need to use vrf_bitmap_check() to check if a client is subscribed to receive interface information for a particular VRF. Just checking if the client->ifinfo value is set will always succeed since it's a pointer initialized by zserv_client_create(). With this fix, we'll stop sending interface messages from all VRFs to all clients, even those that didn't subscribe to it. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
Diffstat (limited to 'zebra/zapi_msg.c')
-rw-r--r--zebra/zapi_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zapi_msg.c b/zebra/zapi_msg.c
index 15f9da0cba..100c9cfac0 100644
--- a/zebra/zapi_msg.c
+++ b/zebra/zapi_msg.c
@@ -209,7 +209,7 @@ int zsend_interface_link_params(struct zserv *client, struct interface *ifp)
struct stream *s = stream_new(ZEBRA_MAX_PACKET_SIZ);
/* Check this client need interface information. */
- if (!client->ifinfo) {
+ if (!vrf_bitmap_check(client->ifinfo, ifp->vrf_id)) {
stream_free(s);
return 0;
}