Home
last modified time | relevance | path

Searched refs:tls13_record (Results 1 – 4 of 4) sorted by relevance

/dflybsd-src/crypto/libressl/ssl/
H A Dtls13_record.h48 struct tls13_record;
50 struct tls13_record *tls13_record_new(void);
51 void tls13_record_free(struct tls13_record *_rec);
52 uint16_t tls13_record_version(struct tls13_record *_rec);
53 uint8_t tls13_record_content_type(struct tls13_record *_rec);
54 int tls13_record_header(struct tls13_record *_rec, CBS *_cbs);
55 int tls13_record_content(struct tls13_record *_rec, CBS *_cbs);
56 void tls13_record_data(struct tls13_record *_rec, CBS *_cbs);
57 int tls13_record_set_data(struct tls13_record *_rec, uint8_t *_data,
59 ssize_t tls13_record_recv(struct tls13_record *_rec, tls_read_cb _wire_read,
[all …]
H A Dtls13_record.c21 struct tls13_record { struct
32 struct tls13_record * argument
35 struct tls13_record *rec = NULL; in tls13_record_new()
37 if ((rec = calloc(1, sizeof(struct tls13_record))) == NULL) in tls13_record_new()
51 tls13_record_free(struct tls13_record *rec) in tls13_record_free()
59 freezero(rec, sizeof(struct tls13_record)); in tls13_record_free()
63 tls13_record_version(struct tls13_record *rec) in tls13_record_version()
69 tls13_record_content_type(struct tls13_record *rec) in tls13_record_content_type()
75 tls13_record_header(struct tls13_record *rec, CBS *cbs) in tls13_record_header()
86 tls13_record_content(struct tls13_record *rec, CBS *cbs) in tls13_record_content()
[all …]
H A Dtls13_record_layer.c82 struct tls13_record *rrec;
84 struct tls13_record *wrec;
/dflybsd-src/lib/libressl/
H A DMakefile25 tls13_legacy.c tls13_lib.c tls13_quic.c tls13_record.c \