]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/zebra_router.h
zebra: print unknown rule family as number
[mirror_frr.git] / zebra / zebra_router.h
index 1f8056198605f8138057d0ac1fa43037ed5a45ab..d8ad8a68646d778cfbba94438aa39ebaad3afe07 100644 (file)
@@ -97,10 +97,15 @@ struct zebra_mlag_info {
        /* MLAG Thread context 'master' */
        struct thread_master *th_master;
 
-       /* Threads for read/write. */
+       /*
+        * Event for Initial MLAG Connection setup & Data Read
+        * Read can be performed only after successful connection establishment,
+        * so no issues.
+        *
+        */
        struct thread *t_read;
+       /* Event for MLAG write */
        struct thread *t_write;
-       pthread_mutex_t mlag_th_mtx;
 };
 
 struct zebra_router {
@@ -162,6 +167,12 @@ struct zebra_router {
         * Time for when we sweep the rib from old routes
         */
        time_t startup_time;
+
+       /*
+        * The hash of nexthop groups associated with this router
+        */
+       struct hash *nhgs;
+       struct hash *nhgs_id;
 };
 
 #define GRACEFUL_RESTART_TIME 60
@@ -169,6 +180,7 @@ struct zebra_router {
 extern struct zebra_router zrouter;
 
 extern void zebra_router_init(void);
+extern void zebra_router_cleanup(void);
 extern void zebra_router_terminate(void);
 
 extern struct route_table *zebra_router_find_table(struct zebra_vrf *zvrf,
@@ -183,6 +195,7 @@ extern void zebra_router_release_table(struct zebra_vrf *zvrf, uint32_t tableid,
 extern int zebra_router_config_write(struct vty *vty);
 
 extern void zebra_router_sweep_route(void);
+extern void zebra_router_sweep_nhgs(void);
 
 extern void zebra_router_show_table_summary(struct vty *vty);