diff options
author | Christian Hopps <chopps@labn.net> | 2024-01-26 23:40:55 +0100 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2024-01-26 23:40:55 +0100 |
commit | e6eec072abd7088c09a23d0328ac9bc9fd00ad7e (patch) | |
tree | 99db60967b6c49482759f6a13548bc50127144f1 /ripd | |
parent | Merge pull request #15220 from LabNConsulting/chopps/ripd-convert (diff) | |
download | frr-e6eec072abd7088c09a23d0328ac9bc9fd00ad7e.tar.xz frr-e6eec072abd7088c09a23d0328ac9bc9fd00ad7e.zip |
ripngd: convert ripngd to mgmtd
- a couple small fixes for ripd conversion as well.
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'ripd')
-rw-r--r-- | ripd/rip_nb.h | 2 | ||||
-rw-r--r-- | ripd/ripd.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ripd/rip_nb.h b/ripd/rip_nb.h index 7521e0fba..d07273af8 100644 --- a/ripd/rip_nb.h +++ b/ripd/rip_nb.h @@ -240,4 +240,6 @@ void cli_show_ip_rip_bfd_profile(struct vty *vty, const struct lyd_node *dnode, extern void ripd_notif_send_auth_type_failure(const char *ifname); extern void ripd_notif_send_auth_failure(const char *ifname); +extern void rip_cli_init(void); + #endif /* _FRR_RIP_NB_H_ */ diff --git a/ripd/ripd.h b/ripd/ripd.h index ac4a51f58..b7e79332f 100644 --- a/ripd/ripd.h +++ b/ripd/ripd.h @@ -526,7 +526,6 @@ extern int offset_list_cmp(struct rip_offset_list *o1, extern void rip_vrf_init(void); extern void rip_vrf_terminate(void); -extern void rip_cli_init(void); extern struct zebra_privs_t ripd_privs; extern struct rip_instance_head rip_instances; |