FD.io VPP
v17.07.01-10-g3be13f0
Vector Packet Processing
Main Page
Related Pages
Data Structures
Source
Files
Symbols
l2tp.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
/** \brief l2tpv3 tunnel interface create request
17
@param client_index - opaque cookie to identify the sender
18
@param context - sender context, to match reply w/ request
19
@param client_address - remote client tunnel ip address
20
@param client_address - local tunnel ip address
21
@param is_ipv6 - ipv6 if non-zero, else ipv4
22
@param local_session_id - local tunnel session id
23
@param remote_session_id - remote tunnel session id
24
@param local_cookie - local tunnel cookie
25
@param l2_sublayer_present - l2 sublayer is present in packets if non-zero
26
@param encap_vrf_id - fib identifier used for outgoing encapsulated packets
27
*/
28
define l2tpv3_create_tunnel
29
{
30
u32
client_index
;
31
u32
context
;
32
u8
client_address[16];
33
u8
our_address[16];
34
u8
is_ipv6
;
35
u32
local_session_id
;
36
u32
remote_session_id
;
37
u64
local_cookie
;
38
u64
remote_cookie
;
39
u8
l2_sublayer_present
;
40
u32
encap_vrf_id
;
41
};
42
43
/** \brief l2tpv3 tunnel interface create response
44
@param context - sender context, to match reply w/ request
45
@param retval - return code for the request
46
@param sw_if_index - index of the new tunnel interface
47
*/
48
define l2tpv3_create_tunnel_reply
49
{
50
u32
context
;
51
i32
retval
;
52
u32
sw_if_index
;
53
};
54
55
autoreply define
l2tpv3_set_tunnel_cookies
56
{
57
u32
client_index
;
58
u32
context
;
59
u32
sw_if_index
;
60
u64
new_local_cookie
;
61
u64
new_remote_cookie
;
62
};
63
64
define sw_if_l2tpv3_tunnel_details
65
{
66
u32
context
;
67
u32
sw_if_index
;
68
u8
interface_name[64];
69
u8
client_address[16];
70
u8
our_address[16];
71
u32
local_session_id
;
72
u32
remote_session_id
;
73
u64
local_cookie[2];
74
u64
remote_cookie
;
75
u8
l2_sublayer_present
;
76
};
77
78
define sw_if_l2tpv3_tunnel_dump
79
{
80
u32
client_index
;
81
u32
context
;
82
};
83
84
autoreply define
l2tpv3_interface_enable_disable
85
{
86
u32
client_index
;
87
u32
context
;
88
u8
enable_disable
;
89
u32
sw_if_index
;
90
};
91
92
autoreply define l2tpv3_set_lookup_key
93
{
94
u32
client_index
;
95
u32
context
;
96
/* 0 = ip6 src_address, 1 = ip6 dst_address, 2 = session_id */
97
u8
key
;
98
};
99
100
/*
101
* Local Variables:
102
* eval: (c-set-style "gnu")
103
* End:
104
*/
vl_api_l2tpv3_create_tunnel_reply_t::retval
i32 retval
Definition:
l2tp.api:51
vl_api_l2tpv3_set_tunnel_cookies_t::sw_if_index
u32 sw_if_index
Definition:
l2tp.api:59
vl_api_l2tpv3_create_tunnel_reply_t::context
u32 context
Definition:
l2tp.api:50
vl_api_l2tpv3_create_tunnel_t::is_ipv6
u8 is_ipv6
Definition:
l2tp.api:34
vl_api_l2tpv3_create_tunnel_reply_t::sw_if_index
u32 sw_if_index
Definition:
l2tp.api:52
vl_api_sw_if_l2tpv3_tunnel_details_t::context
u32 context
Definition:
l2tp.api:66
vl_api_l2tpv3_create_tunnel_t::local_session_id
u32 local_session_id
Definition:
l2tp.api:35
vl_api_l2tpv3_create_tunnel_t::l2_sublayer_present
u8 l2_sublayer_present
Definition:
l2tp.api:39
vl_api_l2tpv3_set_lookup_key_t::context
u32 context
Definition:
l2tp.api:95
vl_api_l2tpv3_interface_enable_disable_t::enable_disable
u8 enable_disable
Definition:
l2tp.api:88
i32
int i32
Definition:
types.h:81
vl_api_sw_if_l2tpv3_tunnel_dump_t::context
u32 context
Definition:
l2tp.api:81
u64
unsigned long u64
Definition:
types.h:89
vl_api_sw_if_l2tpv3_tunnel_details_t::l2_sublayer_present
u8 l2_sublayer_present
Definition:
l2tp.api:75
l2tpv3_interface_enable_disable
int l2tpv3_interface_enable_disable(vnet_main_t *vnm, u32 sw_if_index, int enable_disable)
Definition:
l2tp.c:617
vl_api_l2tpv3_set_tunnel_cookies_t::context
u32 context
Definition:
l2tp.api:58
vl_api_l2tpv3_create_tunnel_t::encap_vrf_id
u32 encap_vrf_id
Definition:
l2tp.api:40
vl_api_l2tpv3_set_lookup_key_t::key
u8 key
Definition:
l2tp.api:97
vl_api_sw_if_l2tpv3_tunnel_details_t::sw_if_index
u32 sw_if_index
Definition:
l2tp.api:67
vl_api_l2tpv3_create_tunnel_t::remote_cookie
u64 remote_cookie
Definition:
l2tp.api:38
vl_api_l2tpv3_interface_enable_disable_t::context
u32 context
Definition:
l2tp.api:87
vl_api_l2tpv3_interface_enable_disable_t::sw_if_index
u32 sw_if_index
Definition:
l2tp.api:89
vl_api_sw_if_l2tpv3_tunnel_details_t::remote_cookie
u64 remote_cookie
Definition:
l2tp.api:74
vl_api_l2tpv3_create_tunnel_t::client_index
u32 client_index
Definition:
l2tp.api:30
vl_api_l2tpv3_set_lookup_key_t::client_index
u32 client_index
Definition:
l2tp.api:94
vl_api_l2tpv3_set_tunnel_cookies_t::new_remote_cookie
u64 new_remote_cookie
Definition:
l2tp.api:61
u32
unsigned int u32
Definition:
types.h:88
vl_api_sw_if_l2tpv3_tunnel_dump_t::client_index
u32 client_index
Definition:
l2tp.api:80
vl_api_sw_if_l2tpv3_tunnel_details_t::local_session_id
u32 local_session_id
Definition:
l2tp.api:71
vl_api_l2tpv3_create_tunnel_t::local_cookie
u64 local_cookie
Definition:
l2tp.api:37
vl_api_l2tpv3_set_tunnel_cookies_t::client_index
u32 client_index
Definition:
l2tp.api:57
vl_api_l2tpv3_create_tunnel_t::context
u32 context
Definition:
l2tp.api:31
vl_api_l2tpv3_interface_enable_disable_t::client_index
u32 client_index
Definition:
l2tp.api:86
u8
unsigned char u8
Definition:
types.h:56
vl_api_l2tpv3_create_tunnel_t::remote_session_id
u32 remote_session_id
Definition:
l2tp.api:36
vl_api_sw_if_l2tpv3_tunnel_details_t::remote_session_id
u32 remote_session_id
Definition:
l2tp.api:72
vl_api_l2tpv3_set_tunnel_cookies_t::new_local_cookie
u64 new_local_cookie
Definition:
l2tp.api:60
l2tpv3_set_tunnel_cookies
int l2tpv3_set_tunnel_cookies(l2t_main_t *lm, u32 sw_if_index, u64 new_local_cookie, u64 new_remote_cookie)
Definition:
l2tp.c:534
src
vnet
l2tp
l2tp.api
Generated on Tue Nov 7 2017 14:26:33 for FD.io VPP by
1.8.11