diff options
Diffstat (limited to 'lib/routing_nb.c')
| -rw-r--r-- | lib/routing_nb.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/routing_nb.c b/lib/routing_nb.c new file mode 100644 index 0000000000..7a6754baa7 --- /dev/null +++ b/lib/routing_nb.c @@ -0,0 +1,22 @@ +#include "northbound.h" +#include "libfrr.h" +#include "routing_nb.h" + + + +/* clang-format off */ +const struct frr_yang_module_info frr_routing_info = { + .name = "frr-routing", + .nodes = { + { + .xpath = "/frr-routing:routing/control-plane-protocols/control-plane-protocol", + .cbs = { + .create = routing_control_plane_protocols_control_plane_protocol_create, + .destroy = routing_control_plane_protocols_control_plane_protocol_destroy, + } + }, + { + .xpath = NULL, + }, + } +}; |
