]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zserv.h
zebra: print unknown rule family as number
[mirror_frr.git] / zebra / zserv.h
index d6fdc0537419a7892f3916b10114f12ba4230c42..d8d82a52ec47bab8765843ba94351734211fed23 100644 (file)
@@ -98,7 +98,13 @@ struct zserv {
        /* client's protocol */
        uint8_t proto;
        uint16_t instance;
-       uint8_t is_synchronous;
+
+       /*
+        * Interested for MLAG Updates, and also stores the client
+        * interested message mask
+        */
+       bool mlag_updates_interested;
+       uint32_t mlag_reg_mask1;
 
        /* Statistics */
        uint32_t redist_v4_add_cnt;
@@ -140,6 +146,7 @@ struct zserv {
        uint32_t v6_nh_watch_rem_cnt;
        uint32_t vxlan_sg_add_cnt;
        uint32_t vxlan_sg_del_cnt;
+       uint32_t error_cnt;
 
        time_t nh_reg_time;
        time_t nh_dereg_time;
@@ -173,8 +180,6 @@ struct zserv {
 DECLARE_HOOK(zserv_client_connect, (struct zserv *client), (client));
 DECLARE_KOOH(zserv_client_close, (struct zserv *client), (client));
 
-extern unsigned int multipath_num;
-
 /*
  * Initialize Zebra API server.
  *