diff options
author | tb <> | 2018-05-01 13:30:24 +0000 |
---|---|---|
committer | tb <> | 2018-05-01 13:30:24 +0000 |
commit | 1d195b2f50d786e8805fd9683f1aa3d058620b4f (patch) | |
tree | 136f68e04ca016e2f44df48bd4650f1c5ea9c425 /src/lib/libssl/ssl.h | |
parent | 82267b005082127062ce8593ce4963d09c361e2e (diff) | |
download | openbsd-1d195b2f50d786e8805fd9683f1aa3d058620b4f.tar.gz openbsd-1d195b2f50d786e8805fd9683f1aa3d058620b4f.tar.bz2 openbsd-1d195b2f50d786e8805fd9683f1aa3d058620b4f.zip |
const for BIO_f_ssl(), the last const difference to OpenSSL in our
public API in libssl.
ok beck, jsing
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/ssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index b68b262969..c3b553fa2f 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.157 2018/04/25 07:25:17 tb Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.158 2018/05/01 13:30:24 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 | * |
@@ -1221,7 +1221,7 @@ int SSL_set_max_proto_version(SSL *ssl, uint16_t version); | |||
1221 | #define SSL_set_max_proto_version SSL_set_max_proto_version | 1221 | #define SSL_set_max_proto_version SSL_set_max_proto_version |
1222 | #endif | 1222 | #endif |
1223 | 1223 | ||
1224 | BIO_METHOD *BIO_f_ssl(void); | 1224 | const BIO_METHOD *BIO_f_ssl(void); |
1225 | BIO *BIO_new_ssl(SSL_CTX *ctx, int client); | 1225 | BIO *BIO_new_ssl(SSL_CTX *ctx, int client); |
1226 | BIO *BIO_new_ssl_connect(SSL_CTX *ctx); | 1226 | BIO *BIO_new_ssl_connect(SSL_CTX *ctx); |
1227 | BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx); | 1227 | BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx); |