FD.io VPP  v16.06
Vector Packet Processing
packet.h
Go to the documentation of this file.
1 /*
2  * packet.h : L2TPv3 packet header format
3  *
4  * Copyright (c) 2013 Cisco and/or its affiliates.
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef __included_l2tp_packet_h__
19 #define __included_l2tp_packet_h__
20 
21 /*
22  * See RFC4719 for packet format.
23  * Note: the l2_specific_sublayer is present in current Linux l2tpv3
24  * tunnels. It is not present in IOS XR l2tpv3 tunnels.
25  * The Linux implementation is almost certainly wrong.
26  */
27 typedef CLIB_PACKED(struct {
28  u32 session_id;
29  u64 cookie;
30  u32 l2_specific_sublayer; /* set to 0 (if present) */
31 }) l2tpv3_header_t;
32 
33 #endif /* __included_l2tp_packet_h__ */
typedef CLIB_PACKED(struct dhcpv6_relay_ctx_{dhcpv6_header_t *pkt;u32 pkt_len;u32 dhcpv6_len;u32 if_index;u32 ctx_id;char ctx_name[32+1];u8 dhcp_msg_type;}) dhcpv6_relay_ctx_t
unsigned long u64
Definition: types.h:89
unsigned int u32
Definition: types.h:88