FD.io VPP  v18.01.1-37-g7ea3975
Vector Packet Processing
cli.c File Reference
+ Include dependency graph for cli.c:

Go to the source code of this file.

Functions

static clib_error_ttap_create_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static clib_error_ttap_delete_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static clib_error_ttap_show_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
clib_error_ttap_cli_init (vlib_main_t *vm)
 

Variables

static vlib_cli_command_t tap_create_command
 (constructor) VLIB_CLI_COMMAND (tap_create_command) More...
 
static vlib_cli_command_t tap_delete__command
 (constructor) VLIB_CLI_COMMAND (tap_delete__command) More...
 
static vlib_cli_command_t tap_show_command
 (constructor) VLIB_CLI_COMMAND (tap_show_command) More...
 

Function Documentation

clib_error_t* tap_cli_init ( vlib_main_t vm)

Definition at line 305 of file cli.c.

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

Definition at line 34 of file cli.c.

+ Here is the call graph for this function:

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

Definition at line 111 of file cli.c.

+ Here is the call graph for this function:

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

Definition at line 159 of file cli.c.

+ Here is the call graph for this function:

Variable Documentation

vlib_cli_command_t tap_create_command
static
Initial value:
= {
.path = "create tap",
.short_help = "create tap {id <if-id>} [hw-addr <mac-address>] "
"[rx-ring-size <size>] [tx-ring-size <size>] [host-ns <netns>] "
"[host-bridge <bridge-name>] [host-ip4-addr <ip4addr/mask>] "
"[host-ip6-addr <ip6-addr] [host-if-name <name>]",
.function = tap_create_command_fn,
}
static clib_error_t * tap_create_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cli.c:34

(constructor) VLIB_CLI_COMMAND (tap_create_command)

Definition at line 100 of file cli.c.

vlib_cli_command_t tap_delete__command
static
Initial value:
=
{
.path = "delete tap",
.short_help = "delete tap {<interface> | sw_if_index <sw_idx>}",
.function = tap_delete_command_fn,
}
static clib_error_t * tap_delete_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cli.c:111

(constructor) VLIB_CLI_COMMAND (tap_delete__command)

Definition at line 150 of file cli.c.

vlib_cli_command_t tap_show_command
static
Initial value:
= {
.path = "show tap",
.short_help = "show tap {<interface>] [descriptors]",
.function = tap_show_command_fn,
}
static clib_error_t * tap_show_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: cli.c:159

(constructor) VLIB_CLI_COMMAND (tap_show_command)

Definition at line 297 of file cli.c.