diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-03-08 08:15:02 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-08 08:15:02 -0500 | 
| commit | 7e058c201adaa493207dd5305c7aaa970a3580ea (patch) | |
| tree | 8587487207cb405e309a31fa94cc3b21e173a969 /ospf6d | |
| parent | 0d31f63dba95658fc8a553c450cecf78775b8423 (diff) | |
| parent | f47abbe1cb4efff360acccd64fb8192be427cf6e (diff) | |
Merge pull request #15469 from LabNConsulting/chopps/keychain-yang
add ietf-key-chain YANG module support
Diffstat (limited to 'ospf6d')
| -rw-r--r-- | ospf6d/ospf6_main.c | 20 | 
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 */  | 
