diff options
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r-- | src/lib/libssl/tls13_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h index 4d6d626433..12ba5750a0 100644 --- a/src/lib/libssl/tls13_internal.h +++ b/src/lib/libssl/tls13_internal.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls13_internal.h,v 1.47 2020/01/23 02:49:38 jsing Exp $ */ | 1 | /* $OpenBSD: tls13_internal.h,v 1.48 2020/01/23 05:08:30 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2018 Bob Beck <beck@openbsd.org> |
4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> | 4 | * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> |
@@ -138,6 +138,7 @@ ssize_t tls13_record_layer_phh(struct tls13_record_layer *rl, CBS *cbs); | |||
138 | ssize_t tls13_read_handshake_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); | 138 | ssize_t tls13_read_handshake_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); |
139 | ssize_t tls13_write_handshake_data(struct tls13_record_layer *rl, const uint8_t *buf, | 139 | ssize_t tls13_write_handshake_data(struct tls13_record_layer *rl, const uint8_t *buf, |
140 | size_t n); | 140 | size_t n); |
141 | ssize_t tls13_pending_application_data(struct tls13_record_layer *rl); | ||
141 | ssize_t tls13_peek_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); | 142 | ssize_t tls13_peek_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); |
142 | ssize_t tls13_read_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); | 143 | ssize_t tls13_read_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); |
143 | ssize_t tls13_write_application_data(struct tls13_record_layer *rl, const uint8_t *buf, | 144 | ssize_t tls13_write_application_data(struct tls13_record_layer *rl, const uint8_t *buf, |
@@ -223,6 +224,7 @@ int tls13_legacy_connect(SSL *ssl); | |||
223 | int tls13_legacy_return_code(SSL *ssl, ssize_t ret); | 224 | int tls13_legacy_return_code(SSL *ssl, ssize_t ret); |
224 | ssize_t tls13_legacy_wire_read_cb(void *buf, size_t n, void *arg); | 225 | ssize_t tls13_legacy_wire_read_cb(void *buf, size_t n, void *arg); |
225 | ssize_t tls13_legacy_wire_write_cb(const void *buf, size_t n, void *arg); | 226 | ssize_t tls13_legacy_wire_write_cb(const void *buf, size_t n, void *arg); |
227 | int tls13_legacy_pending(const SSL *ssl); | ||
226 | int tls13_legacy_read_bytes(SSL *ssl, int type, unsigned char *buf, int len, | 228 | int tls13_legacy_read_bytes(SSL *ssl, int type, unsigned char *buf, int len, |
227 | int peek); | 229 | int peek); |
228 | int tls13_legacy_write_bytes(SSL *ssl, int type, const void *buf, int len); | 230 | int tls13_legacy_write_bytes(SSL *ssl, int type, const void *buf, int len); |