aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy')
-rw-r--r--libmproxy/proxy/root_context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/proxy/root_context.py b/libmproxy/proxy/root_context.py
index 23d4aaf5..8a3372e0 100644
--- a/libmproxy/proxy/root_context.py
+++ b/libmproxy/proxy/root_context.py
@@ -62,7 +62,7 @@ class RootContext(object):
except TlsProtocolException as e:
self.log("Cannot parse Client Hello: %s" % repr(e), "error")
else:
- address = (client_hello.client_sni, 443) # TODO: may need to wrap that in tcp.Address?
+ address = (client_hello.client_sni, 443)
if self.config.check_ignore(address):
return RawTCPLayer(top_layer, logging=False)