diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-04-15 16:35:55 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-04-15 16:35:55 +0000 |
commit | 832a8dbc12e0a6b920f7730770e9bb0c3566e207 (patch) | |
tree | ce8b207c2055a2f1472189d88061ca0adf53fcdd /lib | |
parent | 49f7607c49a84e61bf92de9492358129660ebc7a (diff) |
Document SSL_OP_NO_DTLSv1{,_2}
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/man/SSL_CTX_set_options.3 | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/lib/libssl/man/SSL_CTX_set_options.3 b/lib/libssl/man/SSL_CTX_set_options.3 index 4535eee573c..ed797da2d6f 100644 --- a/lib/libssl/man/SSL_CTX_set_options.3 +++ b/lib/libssl/man/SSL_CTX_set_options.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: SSL_CTX_set_options.3,v 1.12 2018/04/11 18:05:49 schwarze Exp $ +.\" $OpenBSD: SSL_CTX_set_options.3,v 1.13 2021/04/15 16:35:54 tb Exp $ .\" full merge up to: OpenSSL 7946ab33 Dec 6 17:56:41 2015 +0100 .\" selective merge up to: OpenSSL edb79c3a Mar 29 10:07:14 2017 +1000 .\" @@ -52,7 +52,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: April 11 2018 $ +.Dd $Mdocdate: April 15 2021 $ .Dt SSL_CTX_SET_OPTIONS 3 .Os .Sh NAME @@ -184,6 +184,16 @@ this option is currently set by default. See the .Sx SECURE RENEGOTIATION section for more details. +.It Dv SSL_OP_NO_DTLSv1 +Do not use the DTLSv1 protocol. +Deprecated; use +.Xr SSL_CTX_set_min_proto_version 3 +instead. +.It Dv SSL_OP_NO_DTLSv1_2 +Do not use the DTLSv1.2 protocol. +Deprecated; use +.Xr SSL_CTX_set_min_proto_version 3 +instead. .It Dv SSL_OP_NO_QUERY_MTU Do not query the MTU. Only affects DTLS connections. @@ -204,6 +214,9 @@ Deprecated; use instead. .It Dv SSL_OP_NO_TLSv1_1 Do not use the TLSv1.1 protocol. +Deprecated; use +.Xr SSL_CTX_set_min_proto_version 3 +instead. .It Dv SSL_OP_NO_TLSv1_2 Do not use the TLSv1.2 protocol. Deprecated; use |