summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-08-13 15:53:42 +0100
committerMatt Caswell <matt@openssl.org>2018-08-20 15:14:01 +0100
commite97be718044fd9a296f05f13e3ad91427b212b7c (patch)
tree33f7bfea18a11527ad535f97a7b41ca0bb8ddd31 /include
parent32097b33bdff520d149ad6c8a11bd344e4ef764b (diff)
Add support for SSL_CTX_set_post_handshake_auth()
We already have SSL_set_post_handshake_auth(). This just adds the SSL_CTX equivalent. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6938)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ssl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index b61119cc18..eb689c1c36 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1898,6 +1898,7 @@ int SSL_renegotiate_abbreviated(SSL *s);
__owur int SSL_renegotiate_pending(SSL *s);
int SSL_shutdown(SSL *s);
__owur int SSL_verify_client_post_handshake(SSL *s);
+void SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val);
void SSL_set_post_handshake_auth(SSL *s, int val);
__owur const SSL_METHOD *SSL_CTX_get_ssl_method(SSL_CTX *ctx);