]> git.proxmox.com Git - mirror_frr.git/blob - lib/routing_nb.c
ripd: Make sure we do not overuse higher values for ECMP count
[mirror_frr.git] / lib / routing_nb.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2018 Vmware
4 * Vishal Dhingra
5 */
6 #include <zebra.h>
7
8 #include "northbound.h"
9 #include "libfrr.h"
10 #include "routing_nb.h"
11
12
13
14 /* clang-format off */
15 const struct frr_yang_module_info frr_routing_info = {
16 .name = "frr-routing",
17 .nodes = {
18 {
19 .xpath = "/frr-routing:routing/control-plane-protocols/control-plane-protocol",
20 .cbs = {
21 .create = routing_control_plane_protocols_control_plane_protocol_create,
22 .destroy = routing_control_plane_protocols_control_plane_protocol_destroy,
23 }
24 },
25 {
26 .xpath = NULL,
27 },
28 }
29 };