std::vector<uint8_t>rx_record_buf;/**< Decrypted application-data plaintext not yet fully delivered to the caller of @ref recvData; paired with @ref recv_off. */
std::vector<uint8_t>rx_tcp_buf;/**< Raw, not-yet-framed-into-records TCP bytes received from the socket; consumed by @ref readTlsRecordAsync. */
size_trx_tcp_off=0;/**< Offset of the next unconsumed byte within @ref rx_tcp_buf (avoids an erase()/memmove of the buffer front on every record; see @ref readTlsRecordAsync). */
size_trx_handshake_off=0;/**< Reserved/auxiliary offset bookkeeping for handshake buffer consumption. */
size_trecv_off=0;/**< Offset of the next unread byte within @ref rx_record_buf. */