udp: fix csum computation when offload disabled
[vpp.git] / src / plugins / tlspicotls / tls_picotls.h
1 #ifndef __included_tls_picotls_h__
2 #define __included_tls_picotls_h__
3
4 #include <picotls.h>
5 #include <picotls/openssl.h>
6 #include <vnet/plugin/plugin.h>
7 #include <vnet/tls/tls.h>
8 #include <vpp/app/version.h>
9
10 #define TLS_RX_LEN(x) ((x)->rx_content + (x)->rx_len)
11 #define TLS_RX_OFFSET(x) ((x)->rx_content + (x)->rx_offset)
12 #define TLS_RX_IS_LEFT(x) ((x)->rx_len != 0 && (x)->rx_len != (x)->rx_offset)
13 #define TLS_RX_LEFT_LEN(x) ((x)->rx_len - (x)->rx_offset)
14
15 #define TLS_READ_OFFSET(x) ((x)->read_buffer.base + (x)->read_buffer_offset)
16 #define TLS_READ_IS_LEFT(x) ((x)->read_buffer.off != 0 && (x)->read_buffer.off != (x)->read_buffer_offset)
17 #define TLS_READ_LEFT_LEN(x) ((x)->read_buffer.off - (x)->read_buffer_offset)
18
19 #define TLSP_MIN_ENQ_SPACE (1 << 16)
20
21 typedef struct tls_ctx_picotls_
22 {
23   tls_ctx_t ctx;
24   u32 ptls_ctx_idx;
25   ptls_t *tls;
26   u8 *rx_content;
27   int rx_offset;
28   int rx_len;
29   ptls_buffer_t read_buffer;
30   int read_buffer_offset;
31 } picotls_ctx_t;
32
33 typedef struct tls_listen_ctx_picotls_
34 {
35   u32 ptls_lctx_index;
36   ptls_context_t *ptls_ctx;
37 } picotls_listen_ctx_t;
38
39 typedef struct picotls_main_
40 {
41   picotls_ctx_t ***ctx_pool;
42   picotls_listen_ctx_t *lctx_pool;
43   u8 **tx_bufs;
44   u8 **rx_bufs;
45   ptls_context_t *client_ptls_ctx;
46   clib_rwlock_t crypto_keys_rw_lock;
47 } picotls_main_t;
48
49 #endif /* __included_quic_certs_h__ */
50
51 /*
52  * fd.io coding-style-patch-verification: ON
53  *
54  * Local Variables:
55  * eval: (c-set-style "gnu")
56  * End:
57  */