summaryrefslogtreecommitdiff
path: root/ospf6d
diff options
context:
space:
mode:
authorChristian Hopps <chopps@labn.net>2024-02-24 05:48:40 -0500
committerChristian Hopps <chopps@labn.net>2024-03-04 20:00:15 -0500
commit4caffbda8e6c690dc185b3740b203c2fa54e465e (patch)
tree860987d6b4ef824ebc626f412dfcb3b20c72789d /ospf6d
parent29dba445b4e6d762e80e1bd015a70cb362a7906e (diff)
lib: add keychain northbound support
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'ospf6d')
-rw-r--r--ospf6d/ospf6_main.c20
1 files changed, 11 insertions, 9 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c
index 17966e741e..0e8504c529 100644
--- a/ospf6d/ospf6_main.c
+++ b/ospf6d/ospf6_main.c
@@ -169,6 +169,8 @@ static const struct frr_yang_module_info *const ospf6d_yang_modules[] = {
&frr_vrf_info,
&frr_ospf_route_map_info,
&frr_ospf6_route_map_info,
+ &ietf_key_chain_info,
+ &ietf_key_chain_deviation_info,
};
/* actual paths filled in main() */
@@ -182,19 +184,19 @@ static char *state_paths[] = {
/* clang-format off */
FRR_DAEMON_INFO(ospf6d, OSPF6,
- .vty_port = OSPF6_VTY_PORT,
- .proghelp = "Implementation of the OSPFv3 routing protocol.",
+ .vty_port = OSPF6_VTY_PORT,
+ .proghelp = "Implementation of the OSPFv3 routing protocol.",
- .signals = ospf6_signals,
- .n_signals = array_size(ospf6_signals),
+ .signals = ospf6_signals,
+ .n_signals = array_size(ospf6_signals),
- .privs = &ospf6d_privs,
+ .privs = &ospf6d_privs,
- .yang_modules = ospf6d_yang_modules,
- .n_yang_modules = array_size(ospf6d_yang_modules),
+ .yang_modules = ospf6d_yang_modules,
+ .n_yang_modules = array_size(ospf6d_yang_modules),
- .state_paths = state_paths,
-);
+ .state_paths = state_paths,
+ );
/* clang-format on */
/* Max wait time for config to load before accepting hellos */