FD.io VPP
v18.07.1-19-g511ce25
Vector Packet Processing
Main Page
Related Pages
Modules
Namespaces
Data Structures
Source
Files
Symbols
punt.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
option
version
=
"1.0.0"
;
17
18
/** \brief Punt traffic to the host
19
@param client_index - opaque cookie to identify the sender
20
@param context - sender context, to match reply w/ request
21
@param is_add - add punt if non-zero, else delete
22
@param ipv - L3 protocol 4 - IPv4, 6 - IPv6, ~0 - All
23
@param l4_protocol - L4 protocol to be punted, only UDP (0x11) is supported
24
@param l4_port - TCP/UDP port to be punted
25
*/
26
autoreply define punt {
27
u32
client_index
;
28
u32
context
;
29
u8
is_add
;
30
u8
ipv
;
31
u8
l4_protocol
;
32
u16
l4_port
;
33
};
34
35
/** \brief Punt traffic to the host via socket
36
@param client_index - opaque cookie to identify the sender
37
@param context - sender context, to match reply w/ request
38
@param header_version - expected meta data header version (currently 1)
39
@param is_ip4 - L3 protocol 1 - IPv4, 0 - IPv6
40
@param l4_protocol - L4 protocol to be punted, only UDP (0x11) is supported
41
@param l4_port - TCP/UDP port to be punted
42
*/
43
define
punt_socket_register
{
44
u32
client_index
;
45
u32
context
;
46
u32
header_version
;
47
u8
is_ip4
;
48
u8
l4_protocol
;
49
u16
l4_port
;
50
u8
pathname[108];
/* Linux sun_path defined to be 108 bytes, see unix(7) */
51
};
52
53
define punt_socket_register_reply
54
{
55
u32
context
;
56
i32
retval
;
57
u8
pathname[64];
58
};
59
60
autoreply define punt_socket_deregister {
61
u32
client_index
;
62
u32
context
;
63
u8
is_ip4
;
64
u8
l4_protocol
;
65
u16
l4_port
;
66
};
67
68
/*
69
* Local Variables:
70
* eval: (c-set-style "gnu")
71
* End:
72
*/
vl_api_punt_t::context
u32 context
Definition:
punt.api:28
vl_api_punt_socket_deregister_t::l4_protocol
u8 l4_protocol
Definition:
punt.api:64
vl_api_punt_socket_register_t::l4_protocol
u8 l4_protocol
Definition:
punt.api:48
vl_api_punt_socket_deregister_t::context
u32 context
Definition:
punt.api:62
vl_api_punt_socket_register_reply_t::retval
i32 retval
Definition:
punt.api:56
vl_api_punt_socket_deregister_t::client_index
u32 client_index
Definition:
punt.api:61
u8
unsigned char u8
Definition:
types.h:56
vl_api_punt_socket_register_t::is_ip4
u8 is_ip4
Definition:
punt.api:47
vl_api_punt_t::client_index
u32 client_index
Definition:
punt.api:27
vl_api_punt_socket_register_t::header_version
u32 header_version
Definition:
punt.api:46
version
option version
Definition:
punt.api:16
u32
unsigned int u32
Definition:
types.h:88
vl_api_punt_socket_deregister_t::l4_port
u16 l4_port
Definition:
punt.api:65
u16
unsigned short u16
Definition:
types.h:57
vl_api_punt_socket_deregister_t::is_ip4
u8 is_ip4
Definition:
punt.api:63
vl_api_punt_t::l4_protocol
u8 l4_protocol
Definition:
punt.api:31
vl_api_punt_t::ipv
u8 ipv
Definition:
punt.api:30
vl_api_punt_socket_register_reply_t::context
u32 context
Definition:
punt.api:55
punt_socket_register
static void punt_socket_register(bool is_ip4, u8 protocol, u16 port, char *client_pathname)
Definition:
punt.c:265
vl_api_punt_socket_register_t::context
u32 context
Definition:
punt.api:45
vl_api_punt_socket_register_t::client_index
u32 client_index
Definition:
punt.api:44
i32
signed int i32
Definition:
types.h:81
vl_api_punt_t::l4_port
u16 l4_port
Definition:
punt.api:32
vl_api_punt_socket_register_t::l4_port
u16 l4_port
Definition:
punt.api:49
vl_api_punt_t::is_add
u8 is_add
Definition:
punt.api:29
src
vnet
ip
punt.api
Generated on Fri May 24 2019 10:26:23 for FD.io VPP by
1.8.11