DPDK
19.02.0
Main Page
Related Pages
Data Structures
Files
Examples
File List
Globals
lib
librte_port
rte_port_sym_crypto.h
Go to the documentation of this file.
1
/* SPDX-License-Identifier: BSD-3-Clause
2
* Copyright(c) 2018 Intel Corporation
3
*/
4
5
#ifndef __INCLUDE_RTE_PORT_SYM_CRYPTO_H__
6
#define __INCLUDE_RTE_PORT_SYM_CRYPTO_H__
7
8
#ifdef __cplusplus
9
extern
"C"
{
10
#endif
11
21
#include <stdint.h>
22
23
#include <
rte_cryptodev.h
>
24
25
#include "
rte_port.h
"
26
28
typedef
void (*
rte_port_sym_crypto_reader_callback_fn
)(
struct
rte_mbuf
**pkts,
29
uint16_t n_pkts,
void
*arg);
30
32
struct
rte_port_sym_crypto_reader_params
{
34
uint8_t
cryptodev_id
;
35
37
uint16_t
queue_id
;
38
40
rte_port_sym_crypto_reader_callback_fn
f_callback
;
41
43
void
*
arg_callback
;
44
};
45
47
extern
struct
rte_port_in_ops
rte_port_sym_crypto_reader_ops
;
48
49
51
struct
rte_port_sym_crypto_writer_params
{
53
uint8_t
cryptodev_id
;
54
56
uint16_t
queue_id
;
57
59
uint16_t
crypto_op_offset
;
60
62
uint32_t
tx_burst_sz
;
63
};
64
66
extern
struct
rte_port_out_ops
rte_port_sym_crypto_writer_ops
;
67
69
struct
rte_port_sym_crypto_writer_nodrop_params
{
71
uint8_t
cryptodev_id
;
72
74
uint16_t
queue_id
;
75
77
uint16_t
crypto_op_offset
;
78
80
uint32_t
tx_burst_sz
;
81
83
uint32_t
n_retries
;
84
};
85
87
extern
struct
rte_port_out_ops
rte_port_sym_crypto_writer_nodrop_ops
;
88
89
#ifdef __cplusplus
90
}
91
#endif
92
93
#endif
Generated by
1.8.1.2