diff options
Diffstat (limited to 'src/plugins/l2tp')
-rw-r--r-- | src/plugins/l2tp/decap.c | 4 | ||||
-rw-r--r-- | src/plugins/l2tp/encap.c | 2 | ||||
-rw-r--r-- | src/plugins/l2tp/l2tp.c | 22 | ||||
-rw-r--r-- | src/plugins/l2tp/l2tp_api.c | 6 | ||||
-rw-r--r-- | src/plugins/l2tp/packet.h | 2 |
5 files changed, 0 insertions, 36 deletions
diff --git a/src/plugins/l2tp/decap.c b/src/plugins/l2tp/decap.c index 8c41bdd2357..e6ad8b0926c 100644 --- a/src/plugins/l2tp/decap.c +++ b/src/plugins/l2tp/decap.c @@ -249,7 +249,6 @@ VLIB_NODE_FN (l2t_decap_node) (vlib_main_t * vm, * while l2tp-decap-local drops it. */ -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (l2t_decap_node) = { .name = "l2tp-decap", .vector_size = sizeof (u32), @@ -267,11 +266,9 @@ VLIB_REGISTER_NODE (l2t_decap_node) = { [L2T_DECAP_NEXT_DROP] = "error-drop", }, }; -/* *INDENT-ON* */ extern vlib_node_function_t l2t_decap_node_fn; -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (l2t_decap_local_node) = { .function = l2t_decap_node_fn, .name = "l2tp-decap-local", @@ -290,7 +287,6 @@ VLIB_REGISTER_NODE (l2t_decap_local_node) = { [L2T_DECAP_NEXT_DROP] = "error-drop", }, }; -/* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON diff --git a/src/plugins/l2tp/encap.c b/src/plugins/l2tp/encap.c index fbb5fc6ea46..3115b96f088 100644 --- a/src/plugins/l2tp/encap.c +++ b/src/plugins/l2tp/encap.c @@ -192,7 +192,6 @@ VLIB_NODE_FN (l2t_encap_node) (vlib_main_t * vm, } -/* *INDENT-OFF* */ VLIB_REGISTER_NODE (l2t_encap_node) = { .name = "l2tp-encap", .vector_size = sizeof (u32), @@ -211,7 +210,6 @@ VLIB_REGISTER_NODE (l2t_encap_node) = { [L2T_ENCAP_NEXT_DROP] = "error-drop", }, }; -/* *INDENT-ON* */ #ifndef CLIB_MARCH_VARIANT void diff --git a/src/plugins/l2tp/l2tp.c b/src/plugins/l2tp/l2tp.c index 308c0f1d659..907468b5900 100644 --- a/src/plugins/l2tp/l2tp.c +++ b/src/plugins/l2tp/l2tp.c @@ -127,24 +127,20 @@ show_l2tp_command_fn (vlib_main_t * vm, vlib_cli_output (vm, "L2tp session lookup on %s", keystr); - /* *INDENT-OFF* */ pool_foreach (session, lm->sessions) { vlib_cli_output (vm, "%U", format_l2t_session, session); } - /* *INDENT-ON* */ } return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_session_detail_command, static) = { .path = "show l2tpv3", .short_help = "show l2tpv3 [verbose]", .function = show_l2tp_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * test_counters_command_fn (vlib_main_t * vm, @@ -157,7 +153,6 @@ test_counters_command_fn (vlib_main_t * vm, u32 nincr = 0; u32 thread_index = vm->thread_index; - /* *INDENT-OFF* */ pool_foreach (session, lm->sessions) { session_index = session - lm->sessions; @@ -175,19 +170,16 @@ test_counters_command_fn (vlib_main_t * vm, nincr++; } - /* *INDENT-ON* */ vlib_cli_output (vm, "Incremented %d active counters\n", nincr); return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (test_counters_command, static) = { .path = "test lt2p counters", .short_help = "increment all active counters", .function = test_counters_command_fn, }; -/* *INDENT-ON* */ static clib_error_t * clear_counters_command_fn (vlib_main_t * vm, @@ -199,7 +191,6 @@ clear_counters_command_fn (vlib_main_t * vm, u32 counter_index; u32 nincr = 0; - /* *INDENT-OFF* */ pool_foreach (session, lm->sessions) { session_index = session - lm->sessions; @@ -210,19 +201,16 @@ clear_counters_command_fn (vlib_main_t * vm, vlib_zero_combined_counter (&lm->counter_main, counter_index+1); nincr++; } - /* *INDENT-ON* */ vlib_cli_output (vm, "Cleared %d active counters\n", nincr); return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (clear_counters_command, static) = { .path = "clear l2tp counters", .short_help = "clear all active counters", .function = clear_counters_command_fn, }; -/* *INDENT-ON* */ static u8 * format_l2tpv3_name (u8 * s, va_list * args) @@ -252,13 +240,11 @@ l2tpv3_name_renumber (vnet_hw_interface_t * hi, u32 new_dev_instance) return 0; } -/* *INDENT-OFF* */ VNET_DEVICE_CLASS (l2tpv3_device_class,static) = { .name = "L2TPv3", .format_device_name = format_l2tpv3_name, .name_renumber = l2tpv3_name_renumber, }; -/* *INDENT-ON* */ static u8 * format_l2tp_header_with_length (u8 * s, va_list * args) @@ -268,14 +254,12 @@ format_l2tp_header_with_length (u8 * s, va_list * args) return s; } -/* *INDENT-OFF* */ VNET_HW_INTERFACE_CLASS (l2tpv3_hw_class) = { .name = "L2TPV3", .format_header = format_l2tp_header_with_length, .build_rewrite = default_build_rewrite, .flags = VNET_HW_INTERFACE_CLASS_FLAG_P2P, }; -/* *INDENT-ON* */ int create_l2tpv3_ipv6_tunnel (l2t_main_t * lm, @@ -515,7 +499,6 @@ done: return error; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (create_l2tpv3_tunnel_command, static) = { .path = "create l2tpv3 tunnel", @@ -523,7 +506,6 @@ VLIB_CLI_COMMAND (create_l2tpv3_tunnel_command, static) = "create l2tpv3 tunnel client <ip6> our <ip6> local-cookie <hex> remote-cookie <hex> local-session <dec> remote-session <dec>", .function = create_l2tpv3_tunnel_command_fn, }; -/* *INDENT-ON* */ int l2tpv3_set_tunnel_cookies (l2t_main_t * lm, @@ -598,7 +580,6 @@ set_l2tp_tunnel_cookie_command_fn (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_l2tp_tunnel_cookie_command, static) = { .path = "set l2tpv3 tunnel cookie", @@ -606,7 +587,6 @@ VLIB_CLI_COMMAND (set_l2tp_tunnel_cookie_command, static) = "set l2tpv3 tunnel cookie <intfc> local <hex> remote <hex>", .function = set_l2tp_tunnel_cookie_command_fn, }; -/* *INDENT-ON* */ int l2tpv3_interface_enable_disable (vnet_main_t * vnm, @@ -663,14 +643,12 @@ set_ip6_l2tpv3 (vlib_main_t * vm, return 0; } -/* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_interface_ip6_l2tpv3, static) = { .path = "set interface ip6 l2tpv3", .function = set_ip6_l2tpv3, .short_help = "set interface ip6 l2tpv3 <intfc> [del]", }; -/* *INDENT-ON* */ static clib_error_t * l2tp_config (vlib_main_t * vm, unformat_input_t * input) diff --git a/src/plugins/l2tp/l2tp_api.c b/src/plugins/l2tp/l2tp_api.c index ba9d2681b35..9c5ad700e0c 100644 --- a/src/plugins/l2tp/l2tp_api.c +++ b/src/plugins/l2tp/l2tp_api.c @@ -89,12 +89,10 @@ vl_api_sw_if_l2tpv3_tunnel_dump_t_handler (vl_api_sw_if_l2tpv3_tunnel_dump_t * if (!reg) return; - /* *INDENT-OFF* */ pool_foreach (session, lm->sessions) { send_sw_if_l2tpv3_tunnel_details (am, reg, session, lm, mp->context); } - /* *INDENT-ON* */ } static void vl_api_l2tpv3_create_tunnel_t_handler @@ -146,12 +144,10 @@ static void vl_api_l2tpv3_create_tunnel_t_handler encap_fib_index, &sw_if_index); out: - /* *INDENT-OFF* */ REPLY_MACRO2(VL_API_L2TPV3_CREATE_TUNNEL_REPLY, ({ rmp->sw_if_index = ntohl (sw_if_index); })); - /* *INDENT-ON* */ } static void vl_api_l2tpv3_set_tunnel_cookies_t_handler @@ -234,12 +230,10 @@ VLIB_API_INIT_FUNCTION (l2tp_api_hookup); #include <vlib/unix/plugin.h> #include <vpp/app/version.h> -/* *INDENT-OFF* */ VLIB_PLUGIN_REGISTER () = { .version = VPP_BUILD_VER, .description = "Layer 2 Tunneling Protocol v3 (L2TP)", }; -/* *INDENT-ON* */ /* diff --git a/src/plugins/l2tp/packet.h b/src/plugins/l2tp/packet.h index 66dfea2194c..d7d78f85e53 100644 --- a/src/plugins/l2tp/packet.h +++ b/src/plugins/l2tp/packet.h @@ -24,14 +24,12 @@ * tunnels. It is not present in IOS XR l2tpv3 tunnels. * The Linux implementation is almost certainly wrong. */ -/* *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__ */ |