aboutsummaryrefslogtreecommitdiff
path: root/include/odp/api/spec/ipsec.h
diff options
context:
space:
mode:
authorJanne Peltonen <janne.peltonen@nokia.com>2021-06-21 12:29:56 +0300
committerMatias Elo <matias.elo@nokia.com>2021-06-23 12:38:45 +0300
commit99ced673f9ca2f0cc26611092cfda577de0fad44 (patch)
tree96398aeee67f51c89cfe02c92fff7df1fd83a453 /include/odp/api/spec/ipsec.h
parent723f48b3a34b221d3bbe494ed098261edcddac8f (diff)
api: ipsec: specify default values for reassembly enables
Specify that the default values of the IPsec specific reassembly enables are false, i.e. that odp_ipsec_config_init() and odp_ipsec_sa_param_init() initialize them to false. Signed-off-by: Janne Peltonen <janne.peltonen@nokia.com> Reviewed-by: Petri Savolainen <petri.savolainen@nokia.com>
Diffstat (limited to 'include/odp/api/spec/ipsec.h')
-rw-r--r--include/odp/api/spec/ipsec.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/odp/api/spec/ipsec.h b/include/odp/api/spec/ipsec.h
index 2030b19e8..f1a9d4b7d 100644
--- a/include/odp/api/spec/ipsec.h
+++ b/include/odp/api/spec/ipsec.h
@@ -203,11 +203,13 @@ typedef struct odp_ipsec_inbound_config_t {
odp_reass_config_t reassembly;
/** Attempt reassembly after inbound IPsec processing in
- * odp_ipsec_in_enq().
+ * odp_ipsec_in_enq(). Default value is false.
*/
odp_bool_t reass_async;
- /** Attempt reassembly after inline inbound IPsec processing. */
+ /** Attempt reassembly after inline inbound IPsec processing.
+ * Default value is false.
+ **/
odp_bool_t reass_inline;
} odp_ipsec_inbound_config_t;
@@ -880,6 +882,8 @@ typedef struct odp_ipsec_sa_param_t {
* reassembly was enabled in the global IPsec
* configuration.
*
+ * Default value is false.
+ *
* @see odp_ipsec_config()
*
*/