aboutsummaryrefslogtreecommitdiffstats
path: root/vnet/vnet/l2tp/packet.h
diff options
context:
space:
mode:
authorCalvin <calvin.ference@gmail.com>2016-08-10 11:01:41 -0400
committerDave Barach <dave@barachs.net>2016-08-16 09:43:28 -0400
commitee275a7333b811629d65a0c1dccf38105be00196 (patch)
tree6c76614524b0a309a6bed9310623b2d42259d165 /vnet/vnet/l2tp/packet.h
parentb022cd1ed745a39396128649d8ee0979ade760d0 (diff)
VPP-258: Style change for l2tp
Change-Id: Ib456558974820d8d45114b2bbad014a3a3aa2d21 Signed-off-by: Calvin <calvin.ference@gmail.com> Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'vnet/vnet/l2tp/packet.h')
-rw-r--r--vnet/vnet/l2tp/packet.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/vnet/vnet/l2tp/packet.h b/vnet/vnet/l2tp/packet.h
index 88acba41d4b..0bb2f23cef1 100644
--- a/vnet/vnet/l2tp/packet.h
+++ b/vnet/vnet/l2tp/packet.h
@@ -24,10 +24,21 @@
* tunnels. It is not present in IOS XR l2tpv3 tunnels.
* The Linux implementation is almost certainly wrong.
*/
-typedef CLIB_PACKED(struct {
- u32 session_id;
- u64 cookie;
- u32 l2_specific_sublayer; /* set to 0 (if present) */
+/* *INDENT-OFF* */
+typedef CLIB_PACKED (struct
+{
+ u32 session_id;
+ u64 cookie; u32
+ l2_specific_sublayer; /* set to 0 (if present) */
}) l2tpv3_header_t;
+/* *INDENT-ON* */
#endif /* __included_l2tp_packet_h__ */
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "gnu")
+ * End:
+ */