tls13_record
tls13_record_data(struct tls13_record *rec, CBS *cbs)
tls13_record_set_data(struct tls13_record *rec, uint8_t *data, size_t data_len)
tls13_record_recv(struct tls13_record *rec, tls_read_cb wire_read,
tls13_record_send(struct tls13_record *rec, tls_write_cb wire_write,
struct tls13_record *
struct tls13_record *rec = NULL;
if ((rec = calloc(1, sizeof(struct tls13_record))) == NULL)
tls13_record_free(struct tls13_record *rec)
freezero(rec, sizeof(struct tls13_record));
tls13_record_version(struct tls13_record *rec)
tls13_record_content_type(struct tls13_record *rec)
tls13_record_header(struct tls13_record *rec, CBS *cbs)
tls13_record_content(struct tls13_record *rec, CBS *cbs)
struct tls13_record;
struct tls13_record *tls13_record_new(void);
void tls13_record_free(struct tls13_record *_rec);
uint16_t tls13_record_version(struct tls13_record *_rec);
uint8_t tls13_record_content_type(struct tls13_record *_rec);
int tls13_record_header(struct tls13_record *_rec, CBS *_cbs);
int tls13_record_content(struct tls13_record *_rec, CBS *_cbs);
void tls13_record_data(struct tls13_record *_rec, CBS *_cbs);
int tls13_record_set_data(struct tls13_record *_rec, uint8_t *_data,
ssize_t tls13_record_recv(struct tls13_record *_rec, tls_read_cb _wire_read,
ssize_t tls13_record_send(struct tls13_record *_rec, tls_write_cb _wire_write,
struct tls13_record *rrec;
struct tls13_record *wrec;
struct tls13_record *rec;
struct tls13_record *rec;