summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_lib.c')
-rw-r--r--src/lib/libssl/ssl_lib.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c
index ef2a92ffe3..d53bb66b57 100644
--- a/src/lib/libssl/ssl_lib.c
+++ b/src/lib/libssl/ssl_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_lib.c,v 1.265 2021/09/08 12:32:07 tb Exp $ */ 1/* $OpenBSD: ssl_lib.c,v 1.266 2021/09/08 17:24:23 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -2967,6 +2967,24 @@ SSL_get_verify_result(const SSL *ssl)
2967} 2967}
2968 2968
2969int 2969int
2970SSL_verify_client_post_handshake(SSL *ssl)
2971{
2972 return 0;
2973}
2974
2975void
2976SSL_CTX_set_post_handshake_auth(SSL_CTX *ctx, int val)
2977{
2978 return;
2979}
2980
2981void
2982SSL_set_post_handshake_auth(SSL *ssl, int val)
2983{
2984 return;
2985}
2986
2987int
2970SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, 2988SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
2971 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) 2989 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
2972{ 2990{