diff options
author | tb <> | 2021-09-10 14:46:31 +0000 |
---|---|---|
committer | tb <> | 2021-09-10 14:46:31 +0000 |
commit | 52e6cc86b284538c643afc034a28d8c7437924a4 (patch) | |
tree | 390e7651abc931276aa0c5832866355853e52de5 /src/lib | |
parent | 89d87d6264e2a4794bcb2d680f51f0228d9c7a71 (diff) | |
download | openbsd-52e6cc86b284538c643afc034a28d8c7437924a4.tar.gz openbsd-52e6cc86b284538c643afc034a28d8c7437924a4.tar.bz2 openbsd-52e6cc86b284538c643afc034a28d8c7437924a4.zip |
Make SSL opaque
with/ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libssl/ssl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index c93f3739bc..407dd9b0ee 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl.h,v 1.203 2021/09/10 14:44:25 tb Exp $ */ | 1 | /* $OpenBSD: ssl.h,v 1.204 2021/09/10 14:46:31 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 | * |
@@ -703,7 +703,9 @@ void SSL_set_psk_use_session_callback(SSL *s, SSL_psk_use_session_cb_func cb); | |||
703 | #define SSL_MAC_FLAG_READ_MAC_STREAM 1 | 703 | #define SSL_MAC_FLAG_READ_MAC_STREAM 1 |
704 | #define SSL_MAC_FLAG_WRITE_MAC_STREAM 2 | 704 | #define SSL_MAC_FLAG_WRITE_MAC_STREAM 2 |
705 | 705 | ||
706 | #ifndef OPENSSL_NO_SSL_INTERN | 706 | typedef struct ssl_st SSL; |
707 | |||
708 | #if defined(LIBRESSL_INTERNAL) | ||
707 | struct ssl_internal_st; | 709 | struct ssl_internal_st; |
708 | 710 | ||
709 | struct ssl_st { | 711 | struct ssl_st { |