summaryrefslogtreecommitdiffstats
path: root/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2019-11-17 06:35:30 +0000
committerjsing <jsing@openbsd.org>2019-11-17 06:35:30 +0000
commit8630be8620c03e6ca68c645367d7f98e89c059e7 (patch)
tree71be28befdd227b0a8ee35c709e58183b509b311 /lib/libssl/tls13_internal.h
parenttls13_connect() should be static. (diff)
downloadwireguard-openbsd-8630be8620c03e6ca68c645367d7f98e89c059e7.tar.xz
wireguard-openbsd-8630be8620c03e6ca68c645367d7f98e89c059e7.zip
Add the initial framework for the TLSv1.3 server.
ok beck@
Diffstat (limited to 'lib/libssl/tls13_internal.h')
-rw-r--r--lib/libssl/tls13_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/tls13_internal.h b/lib/libssl/tls13_internal.h
index 7288ca3448d..9ab72f4f3a7 100644
--- a/lib/libssl/tls13_internal.h
+++ b/lib/libssl/tls13_internal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_internal.h,v 1.29 2019/11/17 00:10:47 beck Exp $ */
+/* $OpenBSD: tls13_internal.h,v 1.30 2019/11/17 06:35:30 jsing Exp $ */
/*
* Copyright (c) 2018 Bob Beck <beck@openbsd.org>
* Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
@@ -176,6 +176,7 @@ const EVP_MD *tls13_cipher_hash(const SSL_CIPHER *cipher);
/*
* Legacy interfaces.
*/
+int tls13_legacy_accept(SSL *ssl);
int tls13_legacy_connect(SSL *ssl);
int tls13_legacy_return_code(SSL *ssl, ssize_t ret);
ssize_t tls13_legacy_wire_read_cb(void *buf, size_t n, void *arg);