diff options
author | Neale Ranns <nranns@cisco.com> | 2019-06-03 13:21:40 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-06-06 12:12:58 +0000 |
commit | 922077505b43f9560550653f530cf93acc81044d (patch) | |
tree | 99bbd28d90de7b1b4db986a5586c04143a8f0c61 /src/vnet/fib | |
parent | 831f4200cab2b363f2a8ea340331343c14407b7d (diff) |
IP-Punt-redirect: allow the use of a FIB path to describe how to
redirect
Change-Id: I2a3ba2a3d73ea8511e3a511855b041432328f0a8
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/fib')
-rw-r--r-- | src/vnet/fib/fib_node.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/fib/fib_node.h b/src/vnet/fib/fib_node.h index de366f27704..e5a72a16f87 100644 --- a/src/vnet/fib/fib_node.h +++ b/src/vnet/fib/fib_node.h @@ -48,6 +48,7 @@ typedef enum fib_node_type_t_ { FIB_NODE_TYPE_BIER_ENTRY, FIB_NODE_TYPE_VXLAN_GBP_TUNNEL, FIB_NODE_TYPE_IPSEC_SA, + FIB_NODE_TYPE_IP_PUNT_REDIRECT, /** * Marker. New types before this one. leave the test last. */ @@ -75,7 +76,8 @@ typedef enum fib_node_type_t_ { [FIB_NODE_TYPE_BIER_FMASK] = "bier-fmask", \ [FIB_NODE_TYPE_BIER_ENTRY] = "bier-entry", \ [FIB_NODE_TYPE_VXLAN_GBP_TUNNEL] = "vxlan-gbp-tunnel", \ - [FIB_NODE_TYPE_IPSEC_SA] = "ipsec-sa" \ + [FIB_NODE_TYPE_IPSEC_SA] = "ipsec-sa", \ + [FIB_NODE_TYPE_IP_PUNT_REDIRECT] = "ip-punt-redirect" \ } /** |