VPP-259 Coding standards cleanup - vnet/vnet/lawful-intercept
[vpp.git] / src / vnet / lawful-intercept / lawful_intercept.h
index bcb18af..e39fa0d 100644 (file)
 #include <vnet/vnet.h>
 #include <vnet/ip/ip.h>
 
-typedef struct {
+typedef struct
+{
   /* LI collector info */
-  ip4_address_t * src_addrs;
-  ip4_address_t * collectors;
-  u16 * ports;
+  ip4_address_t *src_addrs;
+  ip4_address_t *collectors;
+  u16 *ports;
 
   /* Hit node index */
   u32 hit_node_index;
 
   /* convenience */
-  vlib_main_t * vlib_main;
-  vnet_main_t * vnet_main;
+  vlib_main_t *vlib_main;
+  vnet_main_t *vnet_main;
 } li_main_t;
 
 extern li_main_t li_main;
 
+/* *INDENT-OFF* */
 typedef CLIB_PACKED(struct {
   ip4_header_t ip4;
   udp_header_t udp;
 }) ip4_udp_header_t;
+/* *INDENT-ON* */
 
 extern vlib_node_registration_t li_hit_node;
 
 #endif /* __lawful_intercept_h__ */
+
+/*
+ * fd.io coding-style-patch-verification: ON
+ *
+ * Local Variables:
+ * eval: (c-set-style "gnu")
+ * End:
+ */