summaryrefslogtreecommitdiff
path: root/lib/northbound.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/northbound.h')
-rw-r--r--lib/northbound.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/northbound.h b/lib/northbound.h
index 3f6e4dc46e..8dd6b4c337 100644
--- a/lib/northbound.h
+++ b/lib/northbound.h
@@ -552,7 +552,7 @@ struct nb_node {
* from working properly on shared libraries. For those compilers, use a fixed
* size array to work around the problem.
*/
-#define YANG_MODULE_MAX_NODES 1400
+#define YANG_MODULE_MAX_NODES 2000
struct frr_yang_module_info {
/* YANG module name. */
@@ -600,6 +600,7 @@ enum nb_client {
NB_CLIENT_CONFD,
NB_CLIENT_SYSREPO,
NB_CLIENT_GRPC,
+ NB_CLIENT_PCEP,
};
/* Northbound context. */
@@ -621,6 +622,8 @@ struct nb_context {
} sysrepo;
struct {
} grpc;
+ struct {
+ } pcep;
} client_data;
#endif
};