FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
echo_server.c File Reference
+ Include dependency graph for echo_server.c:

Go to the source code of this file.

Data Structures

struct  echo_server_main_t
 

Functions

int echo_server_session_accept_callback (session_t *s)
 
void echo_server_session_disconnect_callback (session_t *s)
 
void echo_server_session_reset_callback (session_t *s)
 
int echo_server_session_connected_callback (u32 app_index, u32 api_context, session_t *s, u8 is_fail)
 
int echo_server_add_segment_callback (u32 client_index, u64 segment_handle)
 
int echo_server_redirect_connect_callback (u32 client_index, void *mp)
 
void test_bytes (echo_server_main_t *esm, int actual_transfer)
 
int echo_server_builtin_server_rx_callback_no_echo (session_t *s)
 
int echo_server_rx_callback (session_t *s)
 
static int create_api_loopback (vlib_main_t *vm)
 
static int echo_server_attach (u8 *appns_id, u64 appns_flags, u64 appns_secret)
 
static int echo_server_detach (void)
 
static int echo_server_listen ()
 
static int echo_server_create (vlib_main_t *vm, u8 *appns_id, u64 appns_flags, u64 appns_secret)
 
static clib_error_techo_server_create_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
clib_error_techo_server_main_init (vlib_main_t *vm)
 

Variables

echo_server_main_t echo_server_main
 
static session_cb_vft_t echo_server_session_cb_vft
 
static vlib_cli_command_t echo_server_create_command
 (constructor) VLIB_CLI_COMMAND (echo_server_create_command) More...
 

Function Documentation

static int create_api_loopback ( vlib_main_t vm)
static

Definition at line 275 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

int echo_server_add_segment_callback ( u32  client_index,
u64  segment_handle 
)

Definition at line 104 of file echo_server.c.

static int echo_server_attach ( u8 appns_id,
u64  appns_flags,
u64  appns_secret 
)
static

Definition at line 289 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

int echo_server_builtin_server_rx_callback_no_echo ( session_t s)

Definition at line 139 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static int echo_server_create ( vlib_main_t vm,
u8 appns_id,
u64  appns_flags,
u64  appns_secret 
)
static

Definition at line 377 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static clib_error_t* echo_server_create_command_fn ( vlib_main_t vm,
unformat_input_t input,
vlib_cli_command_t cmd 
)
static

Definition at line 421 of file echo_server.c.

+ Here is the call graph for this function:

static int echo_server_detach ( void  )
static

Definition at line 353 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static int echo_server_listen ( )
static

Definition at line 366 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

clib_error_t* echo_server_main_init ( vlib_main_t vm)

Definition at line 533 of file echo_server.c.

int echo_server_redirect_connect_callback ( u32  client_index,
void *  mp 
)

Definition at line 111 of file echo_server.c.

int echo_server_rx_callback ( session_t s)

Definition at line 147 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

int echo_server_session_accept_callback ( session_t s)

Definition at line 59 of file echo_server.c.

+ Here is the call graph for this function:

int echo_server_session_connected_callback ( u32  app_index,
u32  api_context,
session_t s,
u8  is_fail 
)

Definition at line 96 of file echo_server.c.

void echo_server_session_disconnect_callback ( session_t s)

Definition at line 74 of file echo_server.c.

+ Here is the call graph for this function:

void echo_server_session_reset_callback ( session_t s)

Definition at line 85 of file echo_server.c.

+ Here is the call graph for this function:

void test_bytes ( echo_server_main_t esm,
int  actual_transfer 
)

Definition at line 118 of file echo_server.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

vlib_cli_command_t echo_server_create_command
static
Initial value:
=
{
.path = "test echo server",
.short_help = "test echo server proto <proto> [no echo][fifo-size <mbytes>]"
"[rcv-buf-size <bytes>][prealloc-fifos <count>]"
"[private-segment-count <count>][private-segment-size <bytes[m|g]>]"
"[uri <tcp://ip/port>]",
}
static clib_error_t * echo_server_create_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: echo_server.c:421

(constructor) VLIB_CLI_COMMAND (echo_server_create_command)

Definition at line 521 of file echo_server.c.

echo_server_main_t echo_server_main

Definition at line 56 of file echo_server.c.

session_cb_vft_t echo_server_session_cb_vft
static
Initial value:
= {
.session_accept_callback = echo_server_session_accept_callback,
.session_disconnect_callback = echo_server_session_disconnect_callback,
.session_connected_callback = echo_server_session_connected_callback,
.add_segment_callback = echo_server_add_segment_callback,
.builtin_app_rx_callback = echo_server_rx_callback,
.session_reset_callback = echo_server_session_reset_callback
}
int echo_server_session_accept_callback(session_t *s)
Definition: echo_server.c:59
void echo_server_session_disconnect_callback(session_t *s)
Definition: echo_server.c:74
int echo_server_session_connected_callback(u32 app_index, u32 api_context, session_t *s, u8 is_fail)
Definition: echo_server.c:96
void echo_server_session_reset_callback(session_t *s)
Definition: echo_server.c:85
int echo_server_rx_callback(session_t *s)
Definition: echo_server.c:147
int echo_server_add_segment_callback(u32 client_index, u64 segment_handle)
Definition: echo_server.c:104

Definition at line 264 of file echo_server.c.