diff options
| author | Mark Stapp <mjs@voltanet.io> | 2021-06-04 13:41:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-04 13:41:55 -0400 |
| commit | e4768d32b82f0054192f1bf1a455f5fd4e5d895e (patch) | |
| tree | 7f16a15f33ce2356bf013dad4ac8eb82c0e25576 /zebra/main.c | |
| parent | dd553fb39b02cd4391d50ffb84b45da7248906ed (diff) | |
| parent | 2ba6be5b24c9c572d167248004fb1e3c4b57e0a2 (diff) | |
Merge pull request #5865 from slankdev/slankdev-zebra-srv6-manager
zebra: srv6 manager
Diffstat (limited to 'zebra/main.c')
| -rw-r--r-- | zebra/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/main.c b/zebra/main.c index 3f75b222ba..e36af51005 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -57,6 +57,8 @@ #include "zebra/zebra_nb.h" #include "zebra/zebra_opaque.h" #include "zebra/zebra_srte.h" +#include "zebra/zebra_srv6.h" +#include "zebra/zebra_srv6_vty.h" #define ZEBRA_PTM_SUPPORT @@ -418,6 +420,8 @@ int main(int argc, char **argv) zebra_pbr_init(); zebra_opaque_init(); zebra_srte_init(); + zebra_srv6_init(); + zebra_srv6_vty_init(); /* For debug purpose. */ /* SET_FLAG (zebra_debug_event, ZEBRA_DEBUG_EVENT); */ |
