> -----Original Message-----
> From: Nicolau, Radu <[email protected]>
> Sent: Friday, September 3, 2021 12:26 PM
> To: Akhil Goyal <[email protected]>; Doherty, Declan
> <[email protected]>
> Cc: [email protected]; [email protected]; Ananyev, Konstantin
> <[email protected]>; Medvedkin, Vladimir
> <[email protected]>; Richardson, Bruce
> <[email protected]>; Zhang, Roy Fan <[email protected]>;
> [email protected]; [email protected]; Sinha, Abhijit
> <[email protected]>; Buckley, Daniel M <[email protected]>;
> [email protected]; [email protected]; [email protected];
> Nicolau, Radu <[email protected]>
> Subject: [PATCH v4 02/10] security: add UDP params for IPsec NAT-T
> 
> Add support for specifying UDP port params for UDP encapsulation option.
> 
> Signed-off-by: Declan Doherty <[email protected]>
> Signed-off-by: Radu Nicolau <[email protected]>
> Signed-off-by: Abhijit Sinha <[email protected]>
> Signed-off-by: Daniel Martin Buckley <[email protected]>
> ---
>  lib/security/rte_security.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/lib/security/rte_security.h b/lib/security/rte_security.h
> index 45896a77d0..03572b10ab 100644
> --- a/lib/security/rte_security.h
> +++ b/lib/security/rte_security.h
> @@ -112,6 +112,12 @@ struct rte_security_ipsec_tunnel_param {
>       };
>  };
> 
> +struct rte_security_ipsec_udp_param {
> +
> +     uint16_t sport;
> +     uint16_t dport;
> +};
> +
>  /**
>   * IPsec Security Association option flags
>   */
> @@ -224,6 +230,8 @@ struct rte_security_ipsec_xform {
>       /**< IPsec SA Mode - transport/tunnel */
>       struct rte_security_ipsec_tunnel_param tunnel;
>       /**< Tunnel parameters, NULL for transport mode */
> +     struct rte_security_ipsec_udp_param udp;
> +     /**< UDP parameters, ignored when udp_encap option not
> specified */
>       uint64_t esn_soft_limit;
>       /**< ESN for which the overflow event need to be raised */
>       uint32_t replay_win_sz;
> --
> 2.25.1
Acked-by: Fan Zhang <[email protected]>

Reply via email to