diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-27 01:51:33 +0200 | 
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-28 23:28:40 +0200 | 
| commit | cc619176fe8f06d1bf85e5f0225acf08240c2698 (patch) | |
| tree | 615c94a2497ffab74c6c04ed86af1af6cbd4933e /zebra/zebra_nb.c | |
| parent | f776dda1ec5b2ac6f9a0bc71501acf958abd2e5f (diff) | |
zebra: convert ip nht commands to NB
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'zebra/zebra_nb.c')
| -rw-r--r-- | zebra/zebra_nb.c | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/zebra/zebra_nb.c b/zebra/zebra_nb.c index d8781328d6..19b0ae11ed 100644 --- a/zebra/zebra_nb.c +++ b/zebra/zebra_nb.c @@ -861,6 +861,19 @@ const struct frr_yang_module_info frr_zebra_info = {  			}  		},  		{ +			.xpath = "/frr-vrf:lib/vrf/frr-zebra:zebra/filter-nht", +			.cbs = { +				.create = lib_vrf_zebra_filter_nht_create, +				.destroy = lib_vrf_zebra_filter_nht_destroy, +			} +		}, +		{ +			.xpath = "/frr-vrf:lib/vrf/frr-zebra:zebra/filter-nht/route-map", +			.cbs = { +				.modify = lib_vrf_zebra_filter_nht_route_map_modify, +			} +		}, +		{  			.xpath = "/frr-vrf:lib/vrf/frr-zebra:zebra/ribs/rib",  			.cbs = {  				.get_next = lib_vrf_zebra_ribs_rib_get_next,  | 
