diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2023-11-02 13:49:28 -0700 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2023-11-02 17:10:43 -0700 | 
| commit | d889055d8e8d87cac0f4a7086e5b453bbe2d0f79 (patch) | |
| tree | 0fb96873f9b22943218f7c7d876839470370ca5f /ospf6d/ospf6_interface.c | |
| parent | 8e3a96e846a15f34384a20a3ede2e894d7e97253 (diff) | |
lib: convert if_zapi_callbacks into actual hooks
...so that multiple functions can be subscribed.
The create/destroy hooks are renamed to real/unreal because that's what
they *actually* signal.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 90185b09bc..a05ff1098c 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -2797,8 +2797,10 @@ void ospf6_interface_init(void)  {  	/* Install interface node. */  	if_cmd_init(config_write_interface); -	if_zapi_callbacks(ospf6_ifp_create, ospf6_ifp_up, ospf6_ifp_down, -			  ospf6_ifp_destroy); +	hook_register_prio(if_real, 0, ospf6_ifp_create); +	hook_register_prio(if_up, 0, ospf6_ifp_up); +	hook_register_prio(if_down, 0, ospf6_ifp_down); +	hook_register_prio(if_unreal, 0, ospf6_ifp_destroy);  	install_element(VIEW_NODE, &show_ipv6_ospf6_interface_prefix_cmd);  	install_element(VIEW_NODE, &show_ipv6_ospf6_interface_ifname_cmd);  | 
