summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/command.h5
-rw-r--r--lib/northbound.c2
-rw-r--r--lib/northbound.h1
3 files changed, 8 insertions, 0 deletions
diff --git a/lib/command.h b/lib/command.h
index 6538e56588..8856f9f09f 100644
--- a/lib/command.h
+++ b/lib/command.h
@@ -429,6 +429,11 @@ struct cmd_node {
#define SHARP_STR "Sharp Routing Protocol\n"
#define OSPF_GR_STR \
"OSPF non-stop forwarding (NSF) also known as OSPF Graceful Restart\n"
+#define MGMTD_STR "Management Daemon (MGMTD) information\n"
+#define MGMTD_BE_ADAPTER_STR "MGMTD Backend Adapter information\n"
+#define MGMTD_FE_ADAPTER_STR "MGMTD Frontend Adapter information\n"
+#define MGMTD_TXN_STR "MGMTD Transaction information\n"
+#define MGMTD_DS_STR "MGMTD Datastore information\n"
#define CMD_VNI_RANGE "(1-16777215)"
#define CONF_BACKUP_EXT ".sav"
diff --git a/lib/northbound.c b/lib/northbound.c
index 6f2c522a29..0d4c3f0f0d 100644
--- a/lib/northbound.c
+++ b/lib/northbound.c
@@ -2389,6 +2389,8 @@ const char *nb_client_name(enum nb_client client)
return "gRPC";
case NB_CLIENT_PCEP:
return "Pcep";
+ case NB_CLIENT_MGMTD_SERVER:
+ return "MGMTD Server";
case NB_CLIENT_NONE:
return "None";
}
diff --git a/lib/northbound.h b/lib/northbound.h
index 152810b3a9..064e55cf77 100644
--- a/lib/northbound.h
+++ b/lib/northbound.h
@@ -613,6 +613,7 @@ enum nb_client {
NB_CLIENT_SYSREPO,
NB_CLIENT_GRPC,
NB_CLIENT_PCEP,
+ NB_CLIENT_MGMTD_SERVER,
};
/* Northbound context. */