aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy
diff options
context:
space:
mode:
authorDavid Weinstein <dweinst@insitusec.com>2016-01-26 11:59:32 -0500
committerDavid Weinstein <dweinst@insitusec.com>2016-01-26 11:59:32 -0500
commit7d69c3480b6dcc75987958e06b4ee828c07249a9 (patch)
treef737087bce146421a9cddcec529717d17a34ac1a /libmproxy
parenta2ebcfe8795490dc862996218f9e9821b2c3ed83 (diff)
downloadmitmproxy-7d69c3480b6dcc75987958e06b4ee828c07249a9.tar.gz
mitmproxy-7d69c3480b6dcc75987958e06b4ee828c07249a9.tar.bz2
mitmproxy-7d69c3480b6dcc75987958e06b4ee828c07249a9.zip
remove TODO
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)