From 2a1783fd6ae7e17c994010fca414c180eb48bc40 Mon Sep 17 00:00:00 2001 From: Nathan Skrzypczak Date: Tue, 10 Aug 2021 15:05:29 +0200 Subject: ip: punt redirect add nh in api Type: feature Change-Id: Ia970f444ba2f38b7a42ea94942c906f1b541511b Signed-off-by: Nathan Skrzypczak --- src/vnet/ip/ip4_punt_drop.c | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) (limited to 'src/vnet/ip/ip4_punt_drop.c') diff --git a/src/vnet/ip/ip4_punt_drop.c b/src/vnet/ip/ip4_punt_drop.c index c8d65921183..89803afb9dd 100644 --- a/src/vnet/ip/ip4_punt_drop.c +++ b/src/vnet/ip/ip4_punt_drop.c @@ -313,28 +313,8 @@ VLIB_CLI_COMMAND (ip4_punt_policer_command, static) = #ifndef CLIB_MARCH_VARIANT void -ip4_punt_redirect_add (u32 rx_sw_if_index, - u32 tx_sw_if_index, ip46_address_t * nh) -{ - /* *INDENT-OFF* */ - fib_route_path_t *rpaths = NULL, rpath = { - .frp_proto = DPO_PROTO_IP4, - .frp_addr = *nh, - .frp_sw_if_index = tx_sw_if_index, - .frp_weight = 1, - .frp_fib_index = ~0, - }; - /* *INDENT-ON* */ - - vec_add1 (rpaths, rpath); - - ip4_punt_redirect_add_paths (rx_sw_if_index, rpaths); - - vec_free (rpaths); -} - -void -ip4_punt_redirect_add_paths (u32 rx_sw_if_index, fib_route_path_t * rpaths) +ip4_punt_redirect_add_paths (u32 rx_sw_if_index, + const fib_route_path_t *rpaths) { ip_punt_redirect_add (FIB_PROTOCOL_IP4, rx_sw_if_index, -- cgit 1.2.3-korg