diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2022-01-23 22:16:59 +0100 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2022-01-24 18:14:18 +0100 |
commit | 6b88faa7ffadbcb159025faf114fe2e4123e8d48 (patch) | |
tree | decddd79312da365cba2a29b6c5fda315cac0102 /pimd/pim_iface.h | |
parent | Merge pull request #10398 from patrasar/pim_debug_fix (diff) | |
download | frr-6b88faa7ffadbcb159025faf114fe2e4123e8d48.tar.xz frr-6b88faa7ffadbcb159025faf114fe2e4123e8d48.zip |
pimd: move iface lib initialization to a proper place
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'pimd/pim_iface.h')
-rw-r--r-- | pimd/pim_iface.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pimd/pim_iface.h b/pimd/pim_iface.h index f251c55e7..1ddf74361 100644 --- a/pimd/pim_iface.h +++ b/pimd/pim_iface.h @@ -259,9 +259,6 @@ bool pim_if_is_vrf_device(struct interface *ifp); int pim_if_ifchannel_count(struct pim_interface *pim_ifp); -extern int pim_ifp_create(struct interface *ifp); -extern int pim_ifp_up(struct interface *ifp); -extern int pim_ifp_down(struct interface *ifp); -extern int pim_ifp_destroy(struct interface *ifp); +void pim_iface_init(void); #endif /* PIM_IFACE_H */ |