diff options
author | Christian Hopps <chopps@labn.net> | 2023-04-26 23:50:46 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2023-05-01 19:47:12 +0200 |
commit | cfa0facbf936fc6cc053fafea7d2b6fa8bccfc4c (patch) | |
tree | 727b06f65947ae9702c691dfeb4dfe8951225ca8 /staticd | |
parent | Merge pull request #13368 from Keelan10/nhrpd-memory-leak (diff) | |
download | frr-cfa0facbf936fc6cc053fafea7d2b6fa8bccfc4c.tar.xz frr-cfa0facbf936fc6cc053fafea7d2b6fa8bccfc4c.zip |
mgmtd: fully implement debug flags for mgmtd and clients
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'staticd')
-rw-r--r-- | staticd/static_vty.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/staticd/static_vty.c b/staticd/static_vty.c index 386b255a8..3e58a44aa 100644 --- a/staticd/static_vty.c +++ b/staticd/static_vty.c @@ -13,6 +13,7 @@ #include "nexthop.h" #include "table.h" #include "srcdest_table.h" +#include "mgmt_be_client.h" #include "mpls.h" #include "northbound.h" #include "libfrr.h" @@ -1553,4 +1554,6 @@ void static_vty_init(void) install_element(ENABLE_NODE, &debug_staticd_cmd); install_element(CONFIG_NODE, &debug_staticd_cmd); + + mgmt_be_client_lib_vty_init(); } |