Message ID | 1494288006-2185-5-git-send-email-odpbot@yandex.ru |
---|---|
State | Superseded |
Headers | show |
Series | [API-NEXT,v2,1/5] api: ipsec: move soft limits expiration to flags, rather than errors | expand |
diff --git a/include/odp/api/spec/ipsec.h b/include/odp/api/spec/ipsec.h index 3a33845..c16fcf1 100644 --- a/include/odp/api/spec/ipsec.h +++ b/include/odp/api/spec/ipsec.h @@ -901,8 +901,11 @@ typedef union odp_ipsec_op_status_t { union { /** Status flags */ struct { - /** Packet was processed in inline mode */ - uint32_t inline_mode : 1; + /** + * Packet was processed in ASYNC mode through + * the SA configured for INLINE mode. + */ + uint32_t non_inline_mode : 1; } flag;