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.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/libmproxy/protocol2/auto.py b/libmproxy/protocol2/auto.py
new file mode 100644
index 00000000..1c4293ac
--- /dev/null
+++ b/libmproxy/protocol2/auto.py
@@ -0,0 +1,16 @@
+from __future__ import (absolute_import, print_function, division, unicode_literals)
+from .layer import Layer
+
+
+class AutoLayer(Layer):
+ def __call__(self):
+ d = self.client_conn.rfile.peek(1)
+ if d[0] == "\x16":
+ layer = SslLayer(self, True, True)
+ else:
+ layer = TcpLayer(self)
+ for m in layer():
+ yield m
+
+from .rawtcp import TcpLayer
+from .ssl import SslLayer