#ifndef __included_tls_picotls_h__ #define __included_tls_picotls_h__ #include #include #include #include #include #define TLS_RX_LEN(x) ((x)->rx_content + (x)->rx_len) #define TLS_RX_OFFSET(x) ((x)->rx_content + (x)->rx_offset) #define TLS_RX_IS_LEFT(x) ((x)->rx_len != (x)->rx_offset) #define TLS_RX_LEFT_LEN(x) ((x)->rx_len - (x)->rx_offset) #define TLS_WRITE_OFFSET(x) ((x)->write_buffer.base + (x)->write_buffer_offset) #define TLS_WRITE_IS_LEFT(x) ((x)->write_buffer.off != 0 && (x)->write_buffer.off != (x)->write_buffer_offset) typedef struct tls_ctx_picotls_ { tls_ctx_t ctx; u32 ptls_ctx_idx; ptls_t *tls; u8 *rx_content; int rx_offset; int rx_len; ptls_buffer_t write_buffer; uint8_t *write_content; int write_buffer_offset; } picotls_ctx_t; typedef struct tls_listen_ctx_picotls_ { u32 ptls_lctx_index; ptls_context_t *ptls_ctx; } picotls_listen_ctx_t; typedef struct picotls_main_ { picotls_ctx_t ***ctx_pool; picotls_listen_ctx_t *lctx_pool; } picotls_main_t; #endif /* __included_quic_certs_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */