FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
encap.c File Reference
+ Include dependency graph for encap.c:

Go to the source code of this file.

Data Structures

struct  vxlan_encap_trace_t
 

Macros

#define foreach_vxlan_encap_error   _(ENCAPSULATED, "good packets encapsulated")
 

Enumerations

enum  vxlan_encap_error_t { VXLAN_ENCAP_N_ERROR }
 
enum  vxlan_encap_next_t { VXLAN_ENCAP_NEXT_DROP, VXLAN_ENCAP_N_NEXT }
 

Functions

u8format_vxlan_encap_trace (u8 *s, va_list *args)
 
static uword vxlan_encap_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, u8 is_ip4, u8 csum_offload)
 
static uword vxlan4_encap (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 
static uword vxlan6_encap (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
 

Variables

static char * vxlan_encap_error_strings []
 
vlib_node_registration_t vxlan4_encap_node
 (constructor) VLIB_REGISTER_NODE (vxlan4_encap_node) More...
 
vlib_node_registration_t vxlan6_encap_node
 (constructor) VLIB_REGISTER_NODE (vxlan6_encap_node) More...
 

Macro Definition Documentation

◆ foreach_vxlan_encap_error

#define foreach_vxlan_encap_error   _(ENCAPSULATED, "good packets encapsulated")

Definition at line 26 of file encap.c.

Enumeration Type Documentation

◆ vxlan_encap_error_t

Enumerator
VXLAN_ENCAP_N_ERROR 

Definition at line 35 of file encap.c.

◆ vxlan_encap_next_t

Enumerator
VXLAN_ENCAP_NEXT_DROP 
VXLAN_ENCAP_N_NEXT 

Definition at line 42 of file encap.c.

Function Documentation

◆ format_vxlan_encap_trace()

u8* format_vxlan_encap_trace ( u8 s,
va_list *  args 
)

Definition at line 52 of file encap.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vxlan4_encap()

static uword vxlan4_encap ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
static

Definition at line 464 of file encap.c.

+ Here is the call graph for this function:

◆ vxlan6_encap()

static uword vxlan6_encap ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame 
)
static

Definition at line 475 of file encap.c.

+ Here is the call graph for this function:

◆ vxlan_encap_inline()

static uword vxlan_encap_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t from_frame,
u8  is_ip4,
u8  csum_offload 
)
inlinestatic

Definition at line 65 of file encap.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ vxlan4_encap_node

vlib_node_registration_t vxlan4_encap_node
Initial value:
= {
.function = vxlan4_encap,
.name = "vxlan4-encap",
.vector_size = sizeof (u32),
.format_trace = format_vxlan_encap_trace,
.error_strings = vxlan_encap_error_strings,
.n_next_nodes = VXLAN_ENCAP_N_NEXT,
.next_nodes = {
[VXLAN_ENCAP_NEXT_DROP] = "error-drop",
},
}
static char * vxlan_encap_error_strings[]
Definition: encap.c:29
unsigned int u32
Definition: types.h:88
u8 * format_vxlan_encap_trace(u8 *s, va_list *args)
Definition: encap.c:52
#define ARRAY_LEN(x)
Definition: clib.h:62
static uword vxlan4_encap(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: encap.c:464

(constructor) VLIB_REGISTER_NODE (vxlan4_encap_node)

Definition at line 484 of file encap.c.

◆ vxlan6_encap_node

vlib_node_registration_t vxlan6_encap_node
Initial value:
= {
.function = vxlan6_encap,
.name = "vxlan6-encap",
.vector_size = sizeof (u32),
.format_trace = format_vxlan_encap_trace,
.error_strings = vxlan_encap_error_strings,
.n_next_nodes = VXLAN_ENCAP_N_NEXT,
.next_nodes = {
[VXLAN_ENCAP_NEXT_DROP] = "error-drop",
},
}
static char * vxlan_encap_error_strings[]
Definition: encap.c:29
unsigned int u32
Definition: types.h:88
u8 * format_vxlan_encap_trace(u8 *s, va_list *args)
Definition: encap.c:52
#define ARRAY_LEN(x)
Definition: clib.h:62
static uword vxlan6_encap(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: encap.c:475

(constructor) VLIB_REGISTER_NODE (vxlan6_encap_node)

Definition at line 500 of file encap.c.

◆ vxlan_encap_error_strings

char* vxlan_encap_error_strings[]
static
Initial value:
= {
#define _(sym,string)
}
#define foreach_vxlan_encap_error
Definition: encap.c:26

Definition at line 29 of file encap.c.