Home | History | Annotate | Download | only in runner

Lines Matching refs:MaxVersion

36 	maxVersion = VersionTLS12
349 // MaxVersion contains the maximum SSL/TLS version that is acceptable.
352 MaxVersion uint16
867 func (c *Config) maxVersion() uint16 {
868 if c == nil || c.MaxVersion == 0 {
869 return maxVersion
871 return c.MaxVersion
887 maxVersion := c.maxVersion()
892 if vers > maxVersion {
893 vers = maxVersion