blob: 66dfea2194c3857b9fa0a8f9bdbbb6f6e13a77bc [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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
Damjan Marion607de1a2016-08-16 22:53:54 +020021/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070022 * 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 */
Calvinee275a72016-08-10 11:01:41 -040027/* *INDENT-OFF* */
28typedef CLIB_PACKED (struct
29{
Damjan Marion607de1a2016-08-16 22:53:54 +020030 u32 session_id;
31 u64 cookie; u32
Calvinee275a72016-08-10 11:01:41 -040032 l2_specific_sublayer; /* set to 0 (if present) */
Ed Warnickecb9cada2015-12-08 15:45:58 -070033}) l2tpv3_header_t;
Calvinee275a72016-08-10 11:01:41 -040034/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -070035
36#endif /* __included_l2tp_packet_h__ */
Calvinee275a72016-08-10 11:01:41 -040037
38/*
39 * fd.io coding-style-patch-verification: ON
40 *
41 * Local Variables:
42 * eval: (c-set-style "gnu")
43 * End:
44 */