diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-08-10 15:05:29 +0200 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-08-13 18:29:23 +0000 |
commit | 2a1783fd6ae7e17c994010fca414c180eb48bc40 (patch) | |
tree | c7f12d0894ccd57a3098da77414338cb394c5efc /src/vnet/ip/ip6_punt_drop.c | |
parent | 8034a36a9cedc95f6762bf0a07f6617d0bf69bfe (diff) |
ip: punt redirect add nh in api
Type: feature
Change-Id: Ia970f444ba2f38b7a42ea94942c906f1b541511b
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vnet/ip/ip6_punt_drop.c')
-rw-r--r-- | src/vnet/ip/ip6_punt_drop.c | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/src/vnet/ip/ip6_punt_drop.c b/src/vnet/ip/ip6_punt_drop.c index 31f5d37bf02..4edb673c3fa 100644 --- a/src/vnet/ip/ip6_punt_drop.c +++ b/src/vnet/ip/ip6_punt_drop.c @@ -306,27 +306,8 @@ VNET_FEATURE_INIT (ip6_punt_redirect_node, static) = { #ifndef CLIB_MARCH_VARIANT void -ip6_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_IP6, - .frp_addr = *nh, - .frp_sw_if_index = tx_sw_if_index, - .frp_weight = 1, - .frp_fib_index = ~0, - }; - /* *INDENT-ON* */ - vec_add1 (rpaths, rpath); - - ip6_punt_redirect_add_paths (rx_sw_if_index, rpaths); - - vec_free (rpaths); -} - -void -ip6_punt_redirect_add_paths (u32 rx_sw_if_index, fib_route_path_t * rpaths) +ip6_punt_redirect_add_paths (u32 rx_sw_if_index, + const fib_route_path_t *rpaths) { ip_punt_redirect_add (FIB_PROTOCOL_IP6, rx_sw_if_index, |