security: fix doxygen fields
Replace /**< with /** for multiline doxygen comments. Fixes: c261d1431bd8 ("security: introduce security API and framework") Cc: stable@dpdk.org Signed-off-by: Radu Nicolau <radu.nicolau@intel.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com> Acked-by: Anoob Joseph <anoobj@marvell.com>
This commit is contained in:
parent
9404e0138d
commit
382df9dfb6
@ -115,14 +115,14 @@ struct rte_security_ipsec_tunnel_param {
|
|||||||
* IPsec Security Association option flags
|
* IPsec Security Association option flags
|
||||||
*/
|
*/
|
||||||
struct rte_security_ipsec_sa_options {
|
struct rte_security_ipsec_sa_options {
|
||||||
/**< Extended Sequence Numbers (ESN)
|
/** Extended Sequence Numbers (ESN)
|
||||||
*
|
*
|
||||||
* * 1: Use extended (64 bit) sequence numbers
|
* * 1: Use extended (64 bit) sequence numbers
|
||||||
* * 0: Use normal sequence numbers
|
* * 0: Use normal sequence numbers
|
||||||
*/
|
*/
|
||||||
uint32_t esn : 1;
|
uint32_t esn : 1;
|
||||||
|
|
||||||
/**< UDP encapsulation
|
/** UDP encapsulation
|
||||||
*
|
*
|
||||||
* * 1: Do UDP encapsulation/decapsulation so that IPSEC packets can
|
* * 1: Do UDP encapsulation/decapsulation so that IPSEC packets can
|
||||||
* traverse through NAT boxes.
|
* traverse through NAT boxes.
|
||||||
@ -130,7 +130,7 @@ struct rte_security_ipsec_sa_options {
|
|||||||
*/
|
*/
|
||||||
uint32_t udp_encap : 1;
|
uint32_t udp_encap : 1;
|
||||||
|
|
||||||
/**< Copy DSCP bits
|
/** Copy DSCP bits
|
||||||
*
|
*
|
||||||
* * 1: Copy IPv4 or IPv6 DSCP bits from inner IP header to
|
* * 1: Copy IPv4 or IPv6 DSCP bits from inner IP header to
|
||||||
* the outer IP header in encapsulation, and vice versa in
|
* the outer IP header in encapsulation, and vice versa in
|
||||||
@ -139,7 +139,7 @@ struct rte_security_ipsec_sa_options {
|
|||||||
*/
|
*/
|
||||||
uint32_t copy_dscp : 1;
|
uint32_t copy_dscp : 1;
|
||||||
|
|
||||||
/**< Copy IPv6 Flow Label
|
/** Copy IPv6 Flow Label
|
||||||
*
|
*
|
||||||
* * 1: Copy IPv6 flow label from inner IPv6 header to the
|
* * 1: Copy IPv6 flow label from inner IPv6 header to the
|
||||||
* outer IPv6 header.
|
* outer IPv6 header.
|
||||||
@ -147,7 +147,7 @@ struct rte_security_ipsec_sa_options {
|
|||||||
*/
|
*/
|
||||||
uint32_t copy_flabel : 1;
|
uint32_t copy_flabel : 1;
|
||||||
|
|
||||||
/**< Copy IPv4 Don't Fragment bit
|
/** Copy IPv4 Don't Fragment bit
|
||||||
*
|
*
|
||||||
* * 1: Copy the DF bit from the inner IPv4 header to the outer
|
* * 1: Copy the DF bit from the inner IPv4 header to the outer
|
||||||
* IPv4 header.
|
* IPv4 header.
|
||||||
@ -155,7 +155,7 @@ struct rte_security_ipsec_sa_options {
|
|||||||
*/
|
*/
|
||||||
uint32_t copy_df : 1;
|
uint32_t copy_df : 1;
|
||||||
|
|
||||||
/**< Decrement inner packet Time To Live (TTL) field
|
/** Decrement inner packet Time To Live (TTL) field
|
||||||
*
|
*
|
||||||
* * 1: In tunnel mode, decrement inner packet IPv4 TTL or
|
* * 1: In tunnel mode, decrement inner packet IPv4 TTL or
|
||||||
* IPv6 Hop Limit after tunnel decapsulation, or before tunnel
|
* IPv6 Hop Limit after tunnel decapsulation, or before tunnel
|
||||||
@ -164,7 +164,7 @@ struct rte_security_ipsec_sa_options {
|
|||||||
*/
|
*/
|
||||||
uint32_t dec_ttl : 1;
|
uint32_t dec_ttl : 1;
|
||||||
|
|
||||||
/**< Explicit Congestion Notification (ECN)
|
/** Explicit Congestion Notification (ECN)
|
||||||
*
|
*
|
||||||
* * 1: In tunnel mode, enable outer header ECN Field copied from
|
* * 1: In tunnel mode, enable outer header ECN Field copied from
|
||||||
* inner header in tunnel encapsulation, or inner header ECN
|
* inner header in tunnel encapsulation, or inner header ECN
|
||||||
|
Loading…
x
Reference in New Issue
Block a user