From 13131e273dfb6c5436c4cd15adc98c9d0435bcef Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 29 Jul 2021 14:55:45 +0200 Subject: [PATCH] clarify ciphers_(client|server), refs #4703 (#4709) --- mitmproxy/options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mitmproxy/options.py b/mitmproxy/options.py index 9bc870160..14c90d220 100644 --- a/mitmproxy/options.py +++ b/mitmproxy/options.py @@ -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,