summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_main.c
diff options
context:
space:
mode:
authorAbhinay Ramesh <rabhinay@vmware.com>2021-05-11 12:50:05 +0000
committerAbhinay Ramesh <rabhinay@vmware.com>2022-02-09 01:56:38 +0000
commitb25bd2ad6e1a5eb087bc1a12dfb1f6eb50a762f6 (patch)
treeb4fcda33e76916654c177d7af7f654a835448d69 /ospf6d/ospf6_main.c
parent72000880b02706f2375095e5ecad9f939840d62b (diff)
ospf6d: support keychain for ospf6 authentication
Problem Statement: ================== As of now there is no support for ospf6 authentication. To support ospf6 authentication need to have keychain support for managing the auth key.    RCA: ==== New support   Fix: ==== Enabling keychain for ospf6 authentication feature.   Risk: ===== Low risk   Tests Executed: =============== Have verified the support for ospf6 auth trailer feature. Signed-off-by: Abhinay Ramesh <rabhinay@vmware.com>
Diffstat (limited to 'ospf6d/ospf6_main.c')
-rw-r--r--ospf6d/ospf6_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ospf6d/ospf6_main.c b/ospf6d/ospf6_main.c
index 165a764c38..120f307adc 100644
--- a/ospf6d/ospf6_main.c
+++ b/ospf6d/ospf6_main.c
@@ -20,6 +20,7 @@
#include <zebra.h>
#include <lib/version.h>
+#include <lib/keychain.h>
#include <stdlib.h>
#include "getopt.h"
@@ -223,6 +224,7 @@ int main(int argc, char *argv[], char *envp[])
/* thread master */
master = om6->master;
+ keychain_init();
ospf6_vrf_init();
access_list_init();
prefix_list_init();