plugins: clean up plugin descriptions 22/19122/3
authorDave Wallace <dwallacelf@gmail.com>
Tue, 23 Apr 2019 19:29:50 +0000 (15:29 -0400)
committerDamjan Marion <dmarion@me.com>
Fri, 3 May 2019 09:30:46 +0000 (09:30 +0000)
- Make plugin descriptions more consistent
  so the output of "show plugin" can be
  used in the wiki.

Change-Id: I4c6feb11e7dcc5a4cf0848eed37f1d3b035c7dda
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
37 files changed:
src/plugins/abf/abf_api.c
src/plugins/acl/acl.c
src/plugins/avf/plugin.c
src/plugins/cdp/cdp.c
src/plugins/crypto_ia32/main.c
src/plugins/crypto_ipsecmb/ipsecmb.c
src/plugins/crypto_openssl/main.c
src/plugins/ct6/ct6.c
src/plugins/gbp/gbp_api.c
src/plugins/gtpu/gtpu.c
src/plugins/http_static/http_static.c
src/plugins/igmp/igmp.c
src/plugins/ikev2/ikev2.c
src/plugins/ila/ila.c
src/plugins/ioam/encap/ip6_ioam_trace.c
src/plugins/l2e/l2e_api.c
src/plugins/lacp/lacp.c
src/plugins/lb/lb.c
src/plugins/mactime/mactime.c
src/plugins/map/map.c
src/plugins/marvell/plugin.c
src/plugins/memif/memif.c
src/plugins/nat/nat.c
src/plugins/nsh/nsh.c
src/plugins/nsim/nsim.c
src/plugins/perfmon/perfmon.c
src/plugins/pppoe/pppoe.c
src/plugins/quic/quic.c
src/plugins/rdma/plugin.c
src/plugins/srv6-ad/ad.c
src/plugins/srv6-am/am.c
src/plugins/srv6-as/as.c
src/plugins/stn/stn.c
src/plugins/svs/svs_api.c
src/plugins/tlsmbedtls/tls_mbedtls.c
src/plugins/tlsopenssl/tls_openssl.c
src/plugins/vmxnet3/plugin.c

index a951fe6..e5c3bfa 100644 (file)
@@ -312,7 +312,7 @@ VLIB_INIT_FUNCTION (abf_api_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "ACL based Forwarding",
+    .description = "Access Control List (ACL) Based Forwarding",
 };
 /* *INDENT-ON* */
 
index 63aafec..56a1bfa 100644 (file)
@@ -92,7 +92,7 @@ _(ACL_PLUGIN_GET_CONN_TABLE_MAX_ENTRIES,acl_plugin_get_conn_table_max_entries)
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Access Control Lists",
+    .description = "Access Control Lists (ACL)",
 };
 /* *INDENT-ON* */
 
index d2a043a..b512317 100644 (file)
@@ -22,7 +22,7 @@
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "Intel Adaptive Virtual Function (AVF) Device Plugin",
+  .description = "Intel Adaptive Virtual Function (AVF) Device Driver",
 };
 /* *INDENT-ON* */
 
index 08456ac..45863a0 100644 (file)
@@ -189,6 +189,7 @@ VLIB_INIT_FUNCTION (cdp_init);
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
+  .description = "Cisco Discovery Protocol (CDP)",
 };
 /* *INDENT-ON* */
 
index f8e4e17..45bf34e 100644 (file)
@@ -131,7 +131,7 @@ VLIB_INIT_FUNCTION (crypto_ia32_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "Intel AESNI Software Crypto Backend Plugin",
+  .description = "Intel IA32 Software Crypto Engine",
 };
 /* *INDENT-ON* */
 
index b826700..7a80b39 100644 (file)
@@ -550,7 +550,7 @@ VLIB_INIT_FUNCTION (crypto_ipsecmb_init);
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "Intel IPSEC multi-buffer",
+  .description = "Intel IPSEC Multi-buffer Crypto Engine",
 };
 /* *INDENT-ON* */
 
index 0560f31..f6e1537 100644 (file)
@@ -289,7 +289,7 @@ VLIB_INIT_FUNCTION (crypto_openssl_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "OpenSSL Crypto Engine Plugin",
+  .description = "OpenSSL Crypto Engine",
 };
 /* *INDENT-ON* */
 
index a150cbc..478e9ac 100644 (file)
@@ -304,7 +304,7 @@ VNET_FEATURE_INIT (ct6in2out, static) =
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "ipv6 connection tracker",
+  .description = "IPv6 Connection Tracker",
 };
 /* *INDENT-ON* */
 
index bcc2d22..db8c8c6 100644 (file)
@@ -1198,7 +1198,7 @@ VLIB_API_INIT_FUNCTION (gbp_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Group Based Policy",
+    .description = "Group Based Policy (GBP)",
 };
 /* *INDENT-ON* */
 
index fb83fc8..c3a71ea 100644 (file)
@@ -1117,7 +1117,7 @@ VLIB_INIT_FUNCTION (gtpu_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "GTPv1-U",
+    .description = "GPRS Tunnelling Protocol, User Data (GTPv1-U)",
 };
 /* *INDENT-ON* */
 
index 722e4ba..57f1cf7 100644 (file)
@@ -139,7 +139,7 @@ VLIB_INIT_FUNCTION (http_static_init);
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "http static server plugin"
+  .description = "HTTP Static Server"
 };
 /* *INDENT-ON* */
 
index 01f75f9..7f82861 100644 (file)
@@ -498,7 +498,7 @@ VLIB_INIT_FUNCTION (igmp_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "IGMP messaging",
+  .description = "Internet Group Management Protocol (IGMP)",
 };
 /* *INDENT-ON* */
 
index 929f977..2340137 100644 (file)
@@ -3474,7 +3474,7 @@ VLIB_REGISTER_NODE (ikev2_mngr_process_node, static) = {
 
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "IKEv2",
+    .description = "Internet Key Exchange (IKEv2) Protocol",
 };
 /* *INDENT-ON* */
 
index 9313872..bac7615 100644 (file)
@@ -824,7 +824,7 @@ ila_interface (u32 sw_if_index, u8 disable)
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Identifier-locator addressing for IPv6",
+    .description = "Identifier Locator Addressing (ILA) for IPv6",
 };
 /* *INDENT-ON* */
 
index 148d566..ddd9ae9 100644 (file)
@@ -409,7 +409,7 @@ VLIB_CLI_COMMAND (ip6_show_ioam_trace_cmd, static) = {
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Inbound OAM",
+    .description = "Inbound Operations, Administration, and Maintenance (OAM)",
 };
 /* *INDENT-ON* */
 
index 92a13f8..b42fef3 100644 (file)
@@ -141,7 +141,7 @@ VLIB_API_INIT_FUNCTION (l2e_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "L2 Emulation",
+    .description = "Layer 2 (L2) Emulation",
 };
 /* *INDENT-ON* */
 
index 0ecb1df..1a58837 100644 (file)
@@ -412,7 +412,7 @@ VNET_HW_INTERFACE_LINK_UP_DOWN_FUNCTION (lacp_hw_interface_up_down);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Link Aggregation Control Protocol",
+    .description = "Link Aggregation Control Protocol (LACP)",
 };
 /* *INDENT-ON* */
 
index fe7e545..a75f676 100644 (file)
@@ -1244,7 +1244,7 @@ int lb_vip_del(u32 vip_index)
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Load Balancer",
+    .description = "Load Balancer (LB)",
 };
 /* *INDENT-ON* */
 
index 572b913..6cbddbc 100644 (file)
@@ -423,7 +423,7 @@ VNET_FEATURE_INIT (mactime_tx, static) =
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "Time-based MAC source-address filter",
+  .description = "Time-based MAC Source Address Filter",
 };
 /* *INDENT-ON* */
 
index a535442..c2e821a 100644 (file)
@@ -2223,7 +2223,7 @@ VLIB_CLI_COMMAND(map_if_command, static) = {
 
 VLIB_PLUGIN_REGISTER() = {
   .version = VPP_BUILD_VER,
-  .description = "Mapping of address and port (MAP)",
+  .description = "Mapping of Address and Port (MAP)",
 };
 
 /* *INDENT-ON* */
index 6fe6ebe..fe67309 100644 (file)
@@ -22,7 +22,7 @@
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "Marvell Device Plugin",
+  .description = "Marvell PP2 Device Driver",
 };
 /* *INDENT-ON* */
 
index 7f29f4d..c2df8d3 100644 (file)
@@ -1044,7 +1044,7 @@ VLIB_INIT_FUNCTION (memif_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Packet Memory Interface (experimental)",
+    .description = "Packet Memory Interface (memif) -- Experimental",
 };
 /* *INDENT-ON* */
 
index 249df38..0d909ce 100755 (executable)
@@ -171,7 +171,7 @@ VNET_FEATURE_INIT (ip4_nat44_ed_hairpinning, static) =
 
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Network Address Translation",
+    .description = "Network Address Translation (NAT)",
 };
 /* *INDENT-ON* */
 
index d18cede..ea084e4 100644 (file)
@@ -273,7 +273,7 @@ VLIB_INIT_FUNCTION (nsh_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Network Service Header",
+    .description = "Network Service Header (NSH)",
 };
 /* *INDENT-ON* */
 
index 65344ed..61d74b0 100644 (file)
@@ -584,7 +584,7 @@ VNET_FEATURE_INIT (nsim_feature, static) =
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "network delay simulator plugin",
+  .description = "Network Delay Simulator",
 };
 /* *INDENT-ON* */
 
index 4cd4f94..552c887 100644 (file)
@@ -157,7 +157,7 @@ VLIB_INIT_FUNCTION (perfmon_init);
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "Performance monitor plugin",
+  .description = "Performance Monitor",
 #if !defined(__x86_64__)
   .default_disabled = 1,
 #endif
index 9f620a2..ad05b8e 100644 (file)
@@ -729,7 +729,7 @@ VLIB_INIT_FUNCTION (pppoe_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "PPPoE",
+    .description = "PPP over Ethernet (PPPoE)",
 };
 /* *INDENT-ON* */
 
index e2c2514..d00c0e7 100644 (file)
@@ -1758,7 +1758,7 @@ VLIB_INIT_FUNCTION (quic_init);
 VLIB_PLUGIN_REGISTER () =
 {
   .version = VPP_BUILD_VER,
-  .description = "Quic transport protocol",
+  .description = "Quic Transport Protocol",
 };
 /* *INDENT-ON* */
 
index f229b75..b0dddee 100644 (file)
@@ -22,7 +22,7 @@
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "RDMA (ibverb) Device Plugin",
+  .description = "RDMA IBverbs Device Driver",
 };
 /* *INDENT-ON* */
 
index bc55bc1..9cf9eb1 100644 (file)
@@ -463,7 +463,7 @@ VLIB_INIT_FUNCTION (srv6_ad_init);
 
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "Dynamic SRv6 proxy",
+  .description = "Dynamic Segment Routing for IPv6 (SRv6) Proxy",
 };
 /* *INDENT-ON* */
 
index ce8b4d9..9e3f2a3 100644 (file)
@@ -236,7 +236,7 @@ VLIB_INIT_FUNCTION (srv6_am_init);
 
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "Masquerading SRv6 proxy",
+  .description = "Masquerading Segment Routing for IPv6 (SRv6) Proxy",
 };
 /* *INDENT-ON* */
 
index ea13fc8..7a982de 100644 (file)
@@ -573,7 +573,7 @@ VLIB_INIT_FUNCTION (srv6_as_init);
 
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "Static SRv6 proxy",
+  .description = "Static Segment Routing for IPv6 (SRv6) Proxy",
 };
 /* *INDENT-ON* */
 
index 6f5fbdb..cab2cf1 100644 (file)
@@ -279,7 +279,7 @@ VLIB_INIT_FUNCTION (stn_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "VPP Steals the NIC for Container integration",
+    .description = "VPP Steals the NIC (STN) for Container Integration",
 };
 /* *INDENT-ON* */
 
index 068d2fa..39e0843 100644 (file)
@@ -258,7 +258,7 @@ VLIB_INIT_FUNCTION (svs_api_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "Source VRF Select",
+    .description = "Source Virtual Routing and Fowarding (VRF) Select",
 };
 /* *INDENT-ON* */
 
index 294f712..e356088 100644 (file)
@@ -672,7 +672,7 @@ VLIB_INIT_FUNCTION (tls_mbedtls_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "mbedtls based TLS Engine",
+    .description = "Transport Layer Security (TLS) Engine, Mbedtls Based",
 };
 /* *INDENT-ON* */
 
index 976ccb4..903398a 100644 (file)
@@ -941,7 +941,7 @@ VLIB_INIT_FUNCTION (tls_openssl_init);
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
     .version = VPP_BUILD_VER,
-    .description = "openssl based TLS Engine",
+    .description = "Transport Layer Security (TLS) Engine, OpenSSL Based",
 };
 /* *INDENT-ON* */
 
index 8c7112d..76f1cfc 100644 (file)
@@ -22,7 +22,7 @@
 /* *INDENT-OFF* */
 VLIB_PLUGIN_REGISTER () = {
   .version = VPP_BUILD_VER,
-  .description = "VMWare Vmxnet3 Device Plugin",
+  .description = "VMWare Vmxnet3 Device Driver",
 };
 /* *INDENT-ON* */