We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f61172a commit d1b5917Copy full SHA for d1b5917
test/pyhttpd/conf.py
@@ -55,7 +55,9 @@ def replaceinstr(self, line):
55
l = line.replace("TLSProtocol", "SSLProtocol")
56
l = l.replace("+", "")
57
l = l.replace("default", "all")
58
- l = l.replace("0x0303", "1.3") # need to check 1.2 and 1.1
+ l = l.replace("0x0303", "1.2") # need to check 1.3 and 1.1
59
+ elif line.startswith("SSLProtocol"):
60
+ l = line # we have that in test/modules/tls/test_05_proto.py
61
elif line.startswith("TLSHonorClientOrder"):
62
# mod_ssl has SSLHonorCipherOrder on = use server off = use client.
63
l = line.lower()
0 commit comments