summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2021-04-15 16:35:54 +0000
committertb <>2021-04-15 16:35:54 +0000
commit6c8e6297ed5c6b676a5b5124a80041db1e72bd0c (patch)
tree77c6255b12d8d67511670bf0773705fa691e0427
parent8cd40b926a8c4b7fdc8ace5243e2bb1418af7448 (diff)
downloadopenbsd-6c8e6297ed5c6b676a5b5124a80041db1e72bd0c.tar.gz
openbsd-6c8e6297ed5c6b676a5b5124a80041db1e72bd0c.tar.bz2
openbsd-6c8e6297ed5c6b676a5b5124a80041db1e72bd0c.zip
Document SSL_OP_NO_DTLSv1{,_2}
-rw-r--r--src/lib/libssl/man/SSL_CTX_set_options.317
1 files changed, 15 insertions, 2 deletions
diff --git a/src/lib/libssl/man/SSL_CTX_set_options.3 b/src/lib/libssl/man/SSL_CTX_set_options.3
index 4535eee573..ed797da2d6 100644
--- a/src/lib/libssl/man/SSL_CTX_set_options.3
+++ b/src/lib/libssl/man/SSL_CTX_set_options.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: SSL_CTX_set_options.3,v 1.12 2018/04/11 18:05:49 schwarze Exp $ 1.\" $OpenBSD: SSL_CTX_set_options.3,v 1.13 2021/04/15 16:35:54 tb Exp $
2.\" full merge up to: OpenSSL 7946ab33 Dec 6 17:56:41 2015 +0100 2.\" full merge up to: OpenSSL 7946ab33 Dec 6 17:56:41 2015 +0100
3.\" selective merge up to: OpenSSL edb79c3a Mar 29 10:07:14 2017 +1000 3.\" selective merge up to: OpenSSL edb79c3a Mar 29 10:07:14 2017 +1000
4.\" 4.\"
@@ -52,7 +52,7 @@
52.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 52.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
53.\" OF THE POSSIBILITY OF SUCH DAMAGE. 53.\" OF THE POSSIBILITY OF SUCH DAMAGE.
54.\" 54.\"
55.Dd $Mdocdate: April 11 2018 $ 55.Dd $Mdocdate: April 15 2021 $
56.Dt SSL_CTX_SET_OPTIONS 3 56.Dt SSL_CTX_SET_OPTIONS 3
57.Os 57.Os
58.Sh NAME 58.Sh NAME
@@ -184,6 +184,16 @@ this option is currently set by default.
184See the 184See the
185.Sx SECURE RENEGOTIATION 185.Sx SECURE RENEGOTIATION
186section for more details. 186section for more details.
187.It Dv SSL_OP_NO_DTLSv1
188Do not use the DTLSv1 protocol.
189Deprecated; use
190.Xr SSL_CTX_set_min_proto_version 3
191instead.
192.It Dv SSL_OP_NO_DTLSv1_2
193Do not use the DTLSv1.2 protocol.
194Deprecated; use
195.Xr SSL_CTX_set_min_proto_version 3
196instead.
187.It Dv SSL_OP_NO_QUERY_MTU 197.It Dv SSL_OP_NO_QUERY_MTU
188Do not query the MTU. 198Do not query the MTU.
189Only affects DTLS connections. 199Only affects DTLS connections.
@@ -204,6 +214,9 @@ Deprecated; use
204instead. 214instead.
205.It Dv SSL_OP_NO_TLSv1_1 215.It Dv SSL_OP_NO_TLSv1_1
206Do not use the TLSv1.1 protocol. 216Do not use the TLSv1.1 protocol.
217Deprecated; use
218.Xr SSL_CTX_set_min_proto_version 3
219instead.
207.It Dv SSL_OP_NO_TLSv1_2 220.It Dv SSL_OP_NO_TLSv1_2
208Do not use the TLSv1.2 protocol. 221Do not use the TLSv1.2 protocol.
209Deprecated; use 222Deprecated; use