diff options
author | Mark Stapp <mjs@voltanet.io> | 2018-08-17 21:50:09 +0200 |
---|---|---|
committer | Mark Stapp <mjs@voltanet.io> | 2018-10-25 14:57:04 +0200 |
commit | 1d11b21f33c41fca2d95e9e0a0b14608f429ef2b (patch) | |
tree | 7b141afc450f9dc95949b1ab2a53f38b35107de7 /zebra/main.c | |
parent | zebra: update routing socket path (diff) | |
download | frr-1d11b21f33c41fca2d95e9e0a0b14608f429ef2b.tar.xz frr-1d11b21f33c41fca2d95e9e0a0b14608f429ef2b.zip |
zebra: add dplane show commands
Add first pass at show commands for the zebra dplane. Add some stats
counters to show. Start prep for correct shutdown processing, and for
multiple providers.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/main.c')
-rw-r--r-- | zebra/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/main.c b/zebra/main.c index 148bcab7e..33730be92 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -171,6 +171,8 @@ static void sigint(void) route_map_finish(); list_delete(&zebrad.client_list); + zebra_dplane_finish(); + work_queue_free_and_null(&zebrad.ribq); meta_queue_free(zebrad.mq); |