@@ -910,7 +910,7 @@ typedef struct odp_ipsec_op_status_t {
*/
typedef struct odp_ipsec_op_param_t {
/** Number of packets to be processed */
- int num_pkt;
+ unsigned num_pkt;
/** Number of SAs
*
@@ -919,7 +919,7 @@ typedef struct odp_ipsec_op_param_t {
* * 1: Single SA for all packets
* * num_pkt: SA per packet
*/
- int num_sa;
+ unsigned num_sa;
/** Number of operation options
*
@@ -928,7 +928,7 @@ typedef struct odp_ipsec_op_param_t {
* * 1: Single option for all packets
* * num_pkt: An option per packet
*/
- int num_opt;
+ unsigned num_opt;
/** Pointer to an array of packets
*
@@ -1000,7 +1000,7 @@ typedef struct odp_ipsec_packet_result_t {
* fragments. All the fragments (of the same source packet) are stored
* consecutively in the 'pkt' array.
*/
- int num_out;
+ unsigned num_out;
/** IPSEC SA that was used to create the packet
*
@@ -1041,7 +1041,7 @@ typedef struct odp_ipsec_op_result_t {
* The operation updates it with the actual number of packets
* outputted.
*/
- int num_pkt;
+ unsigned num_pkt;
/** Pointer to an array of packets
*