aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol2/auto.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/protocol2/auto.py')
-rw-r--r--libmproxy/protocol2/auto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/protocol2/auto.py b/libmproxy/protocol2/auto.py
index fc111758..4a930720 100644
--- a/libmproxy/protocol2/auto.py
+++ b/libmproxy/protocol2/auto.py
@@ -10,11 +10,11 @@ class AutoLayer(Layer):
return
# TLS ClientHello magic, see http://www.moserware.com/2009/06/first-few-milliseconds-of-https.html#client-hello
if d[0] == "\x16":
- layer = SslLayer(self, True, True)
+ layer = TlsLayer(self, True, True)
else:
layer = TcpLayer(self)
for m in layer():
yield m
from .rawtcp import TcpLayer
-from .ssl import SslLayer
+from .tls import TlsLayer