summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/tls13_internal.h')
-rw-r--r--src/lib/libssl/tls13_internal.h4
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);
138ssize_t tls13_read_handshake_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); 138ssize_t tls13_read_handshake_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n);
139ssize_t tls13_write_handshake_data(struct tls13_record_layer *rl, const uint8_t *buf, 139ssize_t tls13_write_handshake_data(struct tls13_record_layer *rl, const uint8_t *buf,
140 size_t n); 140 size_t n);
141ssize_t tls13_pending_application_data(struct tls13_record_layer *rl);
141ssize_t tls13_peek_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); 142ssize_t tls13_peek_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n);
142ssize_t tls13_read_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n); 143ssize_t tls13_read_application_data(struct tls13_record_layer *rl, uint8_t *buf, size_t n);
143ssize_t tls13_write_application_data(struct tls13_record_layer *rl, const uint8_t *buf, 144ssize_t tls13_write_application_data(struct tls13_record_layer *rl, const uint8_t *buf,
@@ -223,6 +224,7 @@ int tls13_legacy_connect(SSL *ssl);
223int tls13_legacy_return_code(SSL *ssl, ssize_t ret); 224int tls13_legacy_return_code(SSL *ssl, ssize_t ret);
224ssize_t tls13_legacy_wire_read_cb(void *buf, size_t n, void *arg); 225ssize_t tls13_legacy_wire_read_cb(void *buf, size_t n, void *arg);
225ssize_t tls13_legacy_wire_write_cb(const void *buf, size_t n, void *arg); 226ssize_t tls13_legacy_wire_write_cb(const void *buf, size_t n, void *arg);
227int tls13_legacy_pending(const SSL *ssl);
226int tls13_legacy_read_bytes(SSL *ssl, int type, unsigned char *buf, int len, 228int tls13_legacy_read_bytes(SSL *ssl, int type, unsigned char *buf, int len,
227 int peek); 229 int peek);
228int tls13_legacy_write_bytes(SSL *ssl, int type, const void *buf, int len); 230int tls13_legacy_write_bytes(SSL *ssl, int type, const void *buf, int len);