diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-11 13:38:19 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-31 09:20:46 -0500 |
| commit | 161e9ab7e262f1495af3db1669518843ed1b7d73 (patch) | |
| tree | 510f5fbec078b6ab42cec85cbb5377d05329448d /zebra/zebra_router.h | |
| parent | 3801e7646c73b4b0122ea02eb35e8d39c3796c95 (diff) | |
zebra: Move client_list to the zebra_router data structure
The client_list should be owned by the zebra_router data structure
as that it is part of global state information.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_router.h')
| -rw-r--r-- | zebra/zebra_router.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/zebra_router.h b/zebra/zebra_router.h index 244b8c37a0..155841cc9e 100644 --- a/zebra/zebra_router.h +++ b/zebra/zebra_router.h @@ -48,6 +48,9 @@ struct zebra_router { /* Thread master */ struct thread_master *master; + /* Lists of clients who have connected to us */ + struct list *client_list; + struct zebra_router_table_head tables; /* L3-VNI hash table (for EVPN). Only in default instance */ |
