Home
last modified time | relevance | path

Searched refs:TXE (Results 1 – 2 of 2) sorted by relevance

/src/crypto/openssl/ssl/quic/
H A Dquic_record_tx.c24 typedef struct txe_st TXE; typedef
27 OSSL_LIST_MEMBER(txe, TXE);
42 DEFINE_LIST_OF(txe, TXE);
45 static ossl_inline unsigned char *txe_data(const TXE *e) in txe_data()
90 TXE *cons;
136 TXE *e, *enext; in qtx_cleanup_txl()
217 static TXE *qtx_alloc_txe(size_t alloc_len) in qtx_alloc_txe()
219 TXE *txe; in qtx_alloc_txe()
221 if (alloc_len >= SIZE_MAX - sizeof(TXE)) in qtx_alloc_txe()
224 txe = OPENSSL_malloc(sizeof(TXE) + alloc_len); in qtx_alloc_txe()
[all …]
/src/crypto/openssl/doc/designs/quic-design/
H A Dglossary.md292 **TXE:** TX entry. Structure containing encrypted data pending transmission.
303 **TXL:** TXE list. See TXE.