FD.io VPP
v18.01.2-1-g9b554f3
Vector Packet Processing
Main Page
Related Pages
Modules
Namespaces
Data Structures
Source
Files
Symbols
af_packet.api
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2015-2016 Cisco and/or its affiliates.
3
* Licensed under the Apache License, Version 2.0 (the "License");
4
* you may not use this file except in compliance with the License.
5
* You may obtain a copy of the License at:
6
*
7
* http://www.apache.org/licenses/LICENSE-2.0
8
*
9
* Unless required by applicable law or agreed to in writing, software
10
* distributed under the License is distributed on an "AS IS" BASIS,
11
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
* See the License for the specific language governing permissions and
13
* limitations under the License.
14
*/
15
16
vl_api_version
1.0.0
17
18
/** \brief Create host-interface
19
@param client_index - opaque cookie to identify the sender
20
@param context - sender context, to match reply w/ request
21
@param host_if_name - interface name
22
@param hw_addr - interface MAC
23
@param use_random_hw_addr - use random generated MAC
24
*/
25
define af_packet_create
26
{
27
u32
client_index
;
28
u32
context
;
29
30
u8
host_if_name[64];
31
u8
hw_addr[6];
32
u8
use_random_hw_addr
;
33
};
34
35
/** \brief Create host-interface response
36
@param context - sender context, to match reply w/ request
37
@param retval - return value for request
38
*/
39
define af_packet_create_reply
40
{
41
u32
context
;
42
i32
retval
;
43
u32
sw_if_index
;
44
};
45
46
/** \brief Delete host-interface
47
@param client_index - opaque cookie to identify the sender
48
@param context - sender context, to match reply w/ request
49
@param host_if_name - interface name
50
*/
51
autoreply define af_packet_delete
52
{
53
u32
client_index
;
54
u32
context
;
55
56
u8
host_if_name[64];
57
};
58
59
/** \brief Set l4 offload ckecksum calculation
60
@param client_index - opaque cookie to identify the sender
61
@param context - sender context, to match reply w/ request
62
*/
63
autoreply define
af_packet_set_l4_cksum_offload
64
{
65
u32
client_index
;
66
u32
context
;
67
68
u8
sw_if_index
;
69
u8
set
;
70
};
71
72
/*
73
* Local Variables:
74
* eval: (c-set-style "gnu")
75
* End:
76
*/
af_packet_set_l4_cksum_offload
int af_packet_set_l4_cksum_offload(vlib_main_t *vm, u32 sw_if_index, u8 set)
Definition:
af_packet.c:412
vl_api_af_packet_create_t::context
u32 context
Definition:
af_packet.api:28
vl_api_af_packet_set_l4_cksum_offload_t::client_index
u32 client_index
Definition:
af_packet.api:65
vl_api_af_packet_set_l4_cksum_offload_t::context
u32 context
Definition:
af_packet.api:66
vl_api_version
#define vl_api_version(n, v)
Definition:
jvpp_registry.c:18
vl_api_af_packet_create_reply_t::retval
i32 retval
Definition:
af_packet.api:42
vl_api_af_packet_set_l4_cksum_offload_t::sw_if_index
u8 sw_if_index
Definition:
af_packet.api:68
i32
int i32
Definition:
types.h:81
vl_api_af_packet_create_t::client_index
u32 client_index
Definition:
af_packet.api:27
vl_api_af_packet_delete_t::context
u32 context
Definition:
af_packet.api:54
vl_api_af_packet_create_t::use_random_hw_addr
u8 use_random_hw_addr
Definition:
af_packet.api:32
vl_api_af_packet_create_reply_t::context
u32 context
Definition:
af_packet.api:41
u32
unsigned int u32
Definition:
types.h:88
vl_api_af_packet_delete_t::client_index
u32 client_index
Definition:
af_packet.api:53
u8
unsigned char u8
Definition:
types.h:56
vl_api_af_packet_create_reply_t::sw_if_index
u32 sw_if_index
Definition:
af_packet.api:43
src
vnet
devices
af_packet
af_packet.api
Generated on Wed Sep 5 2018 06:02:27 for FD.io VPP by
1.8.11