summaryrefslogtreecommitdiff
path: root/src/regress/lib/libtls/gotls/tls.go
diff options
context:
space:
mode:
authortb <>2024-08-02 15:02:22 +0000
committertb <>2024-08-02 15:02:22 +0000
commit3d1118fa05274d1f3789ca743e76aba59045acf7 (patch)
tree0986a54a0b80c08ce3b8c36c055c022024b67639 /src/regress/lib/libtls/gotls/tls.go
parent69b88701f563e2efc9523720168674a54f6bc069 (diff)
downloadopenbsd-3d1118fa05274d1f3789ca743e76aba59045acf7.tar.gz
openbsd-3d1118fa05274d1f3789ca743e76aba59045acf7.tar.bz2
openbsd-3d1118fa05274d1f3789ca743e76aba59045acf7.zip
Adjust tls regress for protocol parsing fixes
This mostly reverts what was done by beck in Tallinn and adjust tlstest to add new test cases and now failing connection tests.
Diffstat (limited to 'src/regress/lib/libtls/gotls/tls.go')
-rw-r--r--src/regress/lib/libtls/gotls/tls.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/regress/lib/libtls/gotls/tls.go b/src/regress/lib/libtls/gotls/tls.go
index 3029d58c35..cf3e84c030 100644
--- a/src/regress/lib/libtls/gotls/tls.go
+++ b/src/regress/lib/libtls/gotls/tls.go
@@ -45,6 +45,8 @@ const (
45) 45)
46 46
47var protocolNames = map[ProtocolVersion]string{ 47var protocolNames = map[ProtocolVersion]string{
48 ProtocolTLSv10: "TLSv1",
49 ProtocolTLSv11: "TLSv1.1",
48 ProtocolTLSv12: "TLSv1.2", 50 ProtocolTLSv12: "TLSv1.2",
49 ProtocolTLSv13: "TLSv1.3", 51 ProtocolTLSv13: "TLSv1.3",
50 ProtocolsAll: "all", 52 ProtocolsAll: "all",