clarify ciphers_(client|server), refs #4703 (#4709)

This commit is contained in:
Maximilian Hils 2021-07-29 14:55:45 +02:00 committed by GitHub
parent 2d75d06eb6
commit 13131e273d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -56,11 +56,11 @@ class Options(optmanager.OptManager):
)
self.add_option(
"ciphers_client", Optional[str], None,
"Set supported ciphers for client connections using OpenSSL syntax."
"Set supported ciphers for client <-> mitmproxy connections using OpenSSL syntax."
)
self.add_option(
"ciphers_server", Optional[str], None,
"Set supported ciphers for server connections using OpenSSL syntax."
"Set supported ciphers for mitmproxy <-> server connections using OpenSSL syntax."
)
self.add_option(
"client_certs", Optional[str], None,