Changeset 74723 in vbox for trunk/src/VBox
- Timestamp:
- Oct 9, 2018 5:46:09 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/ssl-openssl.cpp
r74342 r74723 111 111 /* Help with above aim. */ 112 112 # if OPENSSL_VERSION_NUMBER >= 0x10100000 113 # ifndef SSL_CTX_get_min_proto_version 114 /* Some older OpenSSL 1.1.0 releases lack the getters, officially they were 115 * added with 1.1.1 but someone cherry picked them, just maybe too late. */ 116 # define SSL_CTX_get_min_proto_version(ctx) (0) 117 # endif 113 118 if (SSL_CTX_get_min_proto_version(pThis->pCtx) < TLS1_VERSION) 114 119 SSL_CTX_set_min_proto_version(pThis->pCtx, TLS1_VERSION);
Note:
See TracChangeset
for help on using the changeset viewer.