diff options
author | Hongjun Ni <hongjun.ni@intel.com> | 2017-05-27 20:23:09 +0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-06-06 07:26:00 +0000 |
commit | 8a0a0ae60b8dd9da7cf53c895e85dc6daf67143d (patch) | |
tree | 9323fb2d785635c88ce7d51b99284ae5aa7effe3 /src/vnet/fib/fib_node.h | |
parent | e68de8c333609fa45ad29a97a460f656c272a3dc (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.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 496929adc61..ec517e157db 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 |