From: Norbert Pocs Date: Wed, 16 Apr 2025 13:44:07 +0000 (+0200) Subject: Document SSL_CTX_set_min_proto_version defaults X-Git-Tag: openssl-3.0.17~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e6fb414ea43b03ca73146a6108985f82c688460;p=thirdparty%2Fopenssl.git Document SSL_CTX_set_min_proto_version defaults If the function is not called the settings default to 0. Fixes #10584 Signed-off-by: Norbert Pocs Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/27410) (cherry picked from commit 871182d29dc24bbb51ff7a4d952ff9d9868f14b5) --- diff --git a/doc/man3/SSL_CTX_set_min_proto_version.pod b/doc/man3/SSL_CTX_set_min_proto_version.pod index 2adf9acce00..e612e644a61 100644 --- a/doc/man3/SSL_CTX_set_min_proto_version.pod +++ b/doc/man3/SSL_CTX_set_min_proto_version.pod @@ -31,9 +31,10 @@ L that also make it possible to disable specific protocol versions. Use these functions instead of disabling specific protocol versions. -Setting the minimum or maximum version to 0, will enable protocol +Setting the minimum or maximum version to 0 (default), will enable protocol versions down to the lowest version, or up to the highest version -supported by the library, respectively. +supported by the library, respectively. The supported versions might be +controlled by system configuration. Getters return 0 in case B or B have been configured to automatically use the lowest or highest version supported by the library.