diff options
| author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2017-06-30 10:35:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-30 10:35:28 -0500 |
| commit | 1d0ca3ebf3ca33f37e23a437dd16e8473a347eb6 (patch) | |
| tree | aa5619148f19625996108b572e38811d834437a5 /ripd/rip_zebra.c | |
| parent | b5a46fd2a6e047576ad6869e4fb4c4ac10fd3773 (diff) | |
| parent | e49b20cecc8ce7b52aa23294fefb79b887d8271b (diff) | |
Merge pull request #770 from donaldsharp/zclient
Zclient
Diffstat (limited to 'ripd/rip_zebra.c')
| -rw-r--r-- | ripd/rip_zebra.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ripd/rip_zebra.c b/ripd/rip_zebra.c index 337555b0b7..31204872ac 100644 --- a/ripd/rip_zebra.c +++ b/ripd/rip_zebra.c @@ -711,3 +711,10 @@ rip_zclient_init (struct thread_master *master) install_element (RIP_NODE, &rip_default_information_originate_cmd); install_element (RIP_NODE, &no_rip_default_information_originate_cmd); } + +void +rip_zclient_stop (void) +{ + zclient_stop (zclient); + zclient_free (zclient); +} |
