diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-02-04 10:57:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-04 10:57:29 -0500 |
| commit | a6bb6a1fe906cba30b6815a64577fa64964d61ab (patch) | |
| tree | a593deae119bbd23f1aa159513301aa9b0f450f1 /zebra/main.c | |
| parent | 05d0c66d8faa313038475c3c50624313a4c9361e (diff) | |
| parent | b9e6727acd3b86a196d8bedc06e61b0b3ba8c47b (diff) | |
Merge pull request #5207 from Spantik/ZERBA_GR
Zebra: Adding GR infrastructure for clients.
Diffstat (limited to 'zebra/main.c')
| -rw-r--r-- | zebra/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/main.c b/zebra/main.c index 75f825e507..f23702d878 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -151,6 +151,10 @@ static void sigint(void) zebra_dplane_pre_finish(); + /* Clean up GR related info. */ + zebra_gr_stale_client_cleanup(zrouter.stale_client_list); + list_delete_all_node(zrouter.stale_client_list); + for (ALL_LIST_ELEMENTS(zrouter.client_list, ln, nn, client)) zserv_close_client(client); |
