Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 21 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | */ |
Calvin | ee275a7 | 2016-08-10 11:01:41 -0400 | [diff] [blame] | 27 | /* *INDENT-OFF* */ |
| 28 | typedef CLIB_PACKED (struct |
| 29 | { |
Damjan Marion | 607de1a | 2016-08-16 22:53:54 +0200 | [diff] [blame] | 30 | u32 session_id; |
| 31 | u64 cookie; u32 |
Calvin | ee275a7 | 2016-08-10 11:01:41 -0400 | [diff] [blame] | 32 | l2_specific_sublayer; /* set to 0 (if present) */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 33 | }) l2tpv3_header_t; |
Calvin | ee275a7 | 2016-08-10 11:01:41 -0400 | [diff] [blame] | 34 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 35 | |
| 36 | #endif /* __included_l2tp_packet_h__ */ |
Calvin | ee275a7 | 2016-08-10 11:01:41 -0400 | [diff] [blame] | 37 | |
| 38 | /* |
| 39 | * fd.io coding-style-patch-verification: ON |
| 40 | * |
| 41 | * Local Variables: |
| 42 | * eval: (c-set-style "gnu") |
| 43 | * End: |
| 44 | */ |