aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol2/upstream_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/protocol2/upstream_proxy.py')
-rw-r--r--libmproxy/protocol2/upstream_proxy.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/libmproxy/protocol2/upstream_proxy.py b/libmproxy/protocol2/upstream_proxy.py
new file mode 100644
index 00000000..bd920309
--- /dev/null
+++ b/libmproxy/protocol2/upstream_proxy.py
@@ -0,0 +1,18 @@
+from __future__ import (absolute_import, print_function, division)
+
+from .layer import Layer, ServerConnectionMixin
+#from .http import HttpLayer
+
+
+class UpstreamProxy(Layer, ServerConnectionMixin):
+
+ def __init__(self, ctx, server_address):
+ super(UpstreamProxy, self).__init__(ctx)
+ self.server_address = server_address
+
+ def __call__(self):
+ #layer = HttpLayer(self)
+ layer = None
+ for message in layer():
+ if not self._handle_server_message(message):
+ yield message