summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl.h')
-rw-r--r--src/lib/libssl/ssl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h
index 7756a71230..1b92bde9d4 100644
--- a/src/lib/libssl/ssl.h
+++ b/src/lib/libssl/ssl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl.h,v 1.143 2018/02/22 17:27:07 jsing Exp $ */ 1/* $OpenBSD: ssl.h,v 1.144 2018/02/22 17:29:24 jsing 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 *
@@ -1337,7 +1337,6 @@ int SSL_check_private_key(const SSL *ctx);
1337 1337
1338int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx, unsigned int sid_ctx_len); 1338int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const unsigned char *sid_ctx, unsigned int sid_ctx_len);
1339 1339
1340SSL *SSL_new(SSL_CTX *ctx);
1341int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx, unsigned int sid_ctx_len); 1340int SSL_set_session_id_context(SSL *ssl, const unsigned char *sid_ctx, unsigned int sid_ctx_len);
1342 1341
1343int SSL_CTX_set_purpose(SSL_CTX *s, int purpose); 1342int SSL_CTX_set_purpose(SSL_CTX *s, int purpose);
@@ -1350,7 +1349,9 @@ int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm);
1350X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl); 1349X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl);
1351int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm); 1350int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm);
1352 1351
1352SSL *SSL_new(SSL_CTX *ctx);
1353void SSL_free(SSL *ssl); 1353void SSL_free(SSL *ssl);
1354int SSL_up_ref(SSL *ssl);
1354int SSL_accept(SSL *ssl); 1355int SSL_accept(SSL *ssl);
1355int SSL_connect(SSL *ssl); 1356int SSL_connect(SSL *ssl);
1356int SSL_read(SSL *ssl, void *buf, int num); 1357int SSL_read(SSL *ssl, void *buf, int num);