summaryrefslogtreecommitdiff
path: root/src/ssl/test/runner/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/ssl/test/runner/common.go')
-rw-r--r--src/ssl/test/runner/common.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ssl/test/runner/common.go b/src/ssl/test/runner/common.go
index cb77a73a..702814dd 100644
--- a/src/ssl/test/runner/common.go
+++ b/src/ssl/test/runner/common.go
@@ -39,10 +39,10 @@ const (
)
const (
- TLS13Default = 0
+ TLS13RFC = 0
TLS13Draft23 = 1
TLS13Draft28 = 2
- TLS13RFC = 3
+ TLS13All = 3
)
var allTLSWireVersions = []uint16{
@@ -1772,7 +1772,7 @@ func (c *Config) isSupportedVersion(wireVers uint16, isDTLS bool) (uint16, bool)
if wireVers != VersionTLS13 {
return 0, false
}
- case TLS13Default:
+ case TLS13All:
// Allow all of them.
default:
panic(c.TLS13Variant)