]> git.droids-corp.org - dpdk.git/commitdiff
doc: add missing network layers in API reference
authorOlivier Matz <olivier.matz@6wind.com>
Thu, 26 Nov 2020 12:44:30 +0000 (13:44 +0100)
committerOlivier Matz <olivier.matz@6wind.com>
Thu, 26 Nov 2020 13:43:16 +0000 (14:43 +0100)
Add missing files in doxy-api-index.md and add a short description
for files that hadn't one.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
doc/api/doxy-api-index.md
lib/librte_net/rte_ecpri.h
lib/librte_net/rte_gre.h
lib/librte_net/rte_higig.h

index bf6edb0276e7ff759bf0e5a36d335c8b359761ef..a6e729de354d09cfaad94ead92fd4ba4f2c0ff41 100644 (file)
@@ -114,7 +114,12 @@ The public API headers are grouped by topics:
   [GRO]                (@ref rte_gro.h),
   [GSO]                (@ref rte_gso.h),
   [frag/reass]         (@ref rte_ip_frag.h),
-  [VXLAN]              (@ref rte_vxlan.h)
+  [VXLAN]              (@ref rte_vxlan.h),
+  [eCPRI]              (@ref rte_ecpri.h),
+  [Geneve]             (@ref rte_geneve.h),
+  [GRE]                (@ref rte_gre.h),
+  [ICMP]               (@ref rte_icmp.h),
+  [MPLS]               (@ref rte_mpls.h)
 
 - **QoS**:
   [metering]           (@ref rte_meter.h),
index 1cbd6d81336317b3fe9f86c9b902cf31d8ec523b..3f3a90335b256cfcd61755fd14cb0013d279ce17 100644 (file)
@@ -5,6 +5,15 @@
 #ifndef _RTE_ECPRI_H_
 #define _RTE_ECPRI_H_
 
+/**
+ * @file
+ *
+ * eCPRI headers definition.
+ *
+ * eCPRI (Common Public Radio Interface) is used in internal interfaces of radio
+ * base station in a 5G infrastructure.
+ */
+
 #include <stdint.h>
 #include <rte_byteorder.h>
 
index ac3ddaada362f7ed85621175fd4b806d02d173df..79f0fa8ff28c2ff78b9a1bb52aa1b7895eba6180 100644 (file)
@@ -8,6 +8,17 @@
 #include <stdint.h>
 #include <rte_byteorder.h>
 
+/**
+ * @file
+ *
+ * GRE headers definition.
+ *
+ * Generic Routing Encapsulation (GRE) is a tunneling protocol that can
+ * encapsulate a wide variety of network layer protocols inside virtual
+ * point-to-point links or point-to-multipoint links over an Internet Protocol
+ * network.
+ */
+
 #ifdef __cplusplus
 extern "C" {
 #endif
index b9cdfefed706ff6978f776ae96f13e6c815e71f5..cc51ec021ad55bd01716cb5277af2377c3007676 100644 (file)
@@ -6,6 +6,14 @@
 #ifndef _RTE_HIGIG_H_
 #define _RTE_HIGIG_H_
 
+/**
+ * @file
+ *
+ * HIGIG2 headers definition.
+ *
+ * It is a layer 2.5 protocol and used in Broadcom switches.
+ */
+
 #include <stdint.h>
 #include <rte_byteorder.h>