summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeck <>2020-01-22 06:46:34 +0000
committerbeck <>2020-01-22 06:46:34 +0000
commit6cfc7c6a74fb4ad044b6d8b68f5135cc37105586 (patch)
tree492b1d607c1f991e49e0eb06b69d4663c01cfd93
parente9fe0d205322c81714d976c7e2b0b98e131e9e4b (diff)
downloadopenbsd-6cfc7c6a74fb4ad044b6d8b68f5135cc37105586.tar.gz
openbsd-6cfc7c6a74fb4ad044b6d8b68f5135cc37105586.tar.bz2
openbsd-6cfc7c6a74fb4ad044b6d8b68f5135cc37105586.zip
Note in the man page that the default protocols list includes 1.3
ok jsing@
-rw-r--r--src/lib/libtls/man/tls_config_set_protocols.38
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libtls/man/tls_config_set_protocols.3 b/src/lib/libtls/man/tls_config_set_protocols.3
index ec913827c2..0aed5b93cf 100644
--- a/src/lib/libtls/man/tls_config_set_protocols.3
+++ b/src/lib/libtls/man/tls_config_set_protocols.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: tls_config_set_protocols.3,v 1.7 2020/01/20 08:39:21 jsing Exp $ 1.\" $OpenBSD: tls_config_set_protocols.3,v 1.8 2020/01/22 06:46:34 beck Exp $
2.\" 2.\"
3.\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> 3.\" Copyright (c) 2014 Ted Unangst <tedu@openbsd.org>
4.\" Copyright (c) 2015, 2016 Joel Sing <jsing@openbsd.org> 4.\" Copyright (c) 2015, 2016 Joel Sing <jsing@openbsd.org>
@@ -16,7 +16,7 @@
16.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18.\" 18.\"
19.Dd $Mdocdate: January 20 2020 $ 19.Dd $Mdocdate: January 22 2020 $
20.Dt TLS_CONFIG_SET_PROTOCOLS 3 20.Dt TLS_CONFIG_SET_PROTOCOLS 3
21.Os 21.Os
22.Sh NAME 22.Sh NAME
@@ -87,7 +87,7 @@ Additionally, the values
87.Dv TLS_PROTOCOLS_ALL 87.Dv TLS_PROTOCOLS_ALL
88(all supported protocols) and 88(all supported protocols) and
89.Dv TLS_PROTOCOLS_DEFAULT 89.Dv TLS_PROTOCOLS_DEFAULT
90(TLSv1.2 only) may be used. 90(TLSv1.2 and TLSv1.3) may be used.
91.Pp 91.Pp
92The 92The
93.Fn tls_config_parse_protocols 93.Fn tls_config_parse_protocols
@@ -101,7 +101,7 @@ function.
101The protocol string is a comma or colon separated list of keywords. 101The protocol string is a comma or colon separated list of keywords.
102Valid keywords are tlsv1.0, tlsv1.1, tlsv1.2, tlsv1.3, all (all supported 102Valid keywords are tlsv1.0, tlsv1.1, tlsv1.2, tlsv1.3, all (all supported
103protocols), default (an alias for secure), legacy (an alias for all) and 103protocols), default (an alias for secure), legacy (an alias for all) and
104secure (currently TLSv1.2 only). 104secure (currently TLSv1.2 and TLSv1.3).
105If a value has a negative prefix (in the form of a leading exclamation mark) 105If a value has a negative prefix (in the form of a leading exclamation mark)
106then it is removed from the list of available protocols, rather than being 106then it is removed from the list of available protocols, rather than being
107added to it. 107added to it.