aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/fib/fib_node.h
diff options
context:
space:
mode:
authorHongjun Ni <hongjun.ni@intel.com>2017-05-27 20:23:09 +0800
committerNeale Ranns <nranns@cisco.com>2017-06-06 07:26:00 +0000
commit8a0a0ae60b8dd9da7cf53c895e85dc6daf67143d (patch)
tree9323fb2d785635c88ce7d51b99284ae5aa7effe3 /src/vnet/fib/fib_node.h
parente68de8c333609fa45ad29a97a460f656c272a3dc (diff)
Rework vxlan-gpe to support FIB 2.0 and bypass mode
Change-Id: I0324f945bdb4dd3b19151be6f3ce24a47a000104 Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
Diffstat (limited to 'src/vnet/fib/fib_node.h')
-rw-r--r--src/vnet/fib/fib_node.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/fib/fib_node.h b/src/vnet/fib/fib_node.h
index 496929ad..ec517e15 100644
--- a/src/vnet/fib/fib_node.h
+++ b/src/vnet/fib/fib_node.h
@@ -42,6 +42,7 @@ typedef enum fib_node_type_t_ {
FIB_NODE_TYPE_GRE_TUNNEL,
FIB_NODE_TYPE_VXLAN_TUNNEL,
FIB_NODE_TYPE_MAP_E,
+ FIB_NODE_TYPE_VXLAN_GPE_TUNNEL,
/**
* Marker. New types before this one. leave the test last.
*/
@@ -65,6 +66,7 @@ typedef enum fib_node_type_t_ {
[FIB_NODE_TYPE_GRE_TUNNEL] = "gre-tunnel", \
[FIB_NODE_TYPE_VXLAN_TUNNEL] = "vxlan-tunnel", \
[FIB_NODE_TYPE_MAP_E] = "map-e", \
+ [FIB_NODE_TYPE_VXLAN_GPE_TUNNEL] = "vxlan-gpe-tunnel", \
}
/**
@@ -272,7 +274,7 @@ typedef struct fib_node_vft_t_ {
/**
* An node in the FIB graph
*
- * Objects in the FIB form a graph.
+ * Objects in the FIB form a graph.
*/
typedef struct fib_node_t_ {
#if CLIB_DEBUG > 0