aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol2/http_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/protocol2/http_proxy.py')
-rw-r--r--libmproxy/protocol2/http_proxy.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/libmproxy/protocol2/http_proxy.py b/libmproxy/protocol2/http_proxy.py
deleted file mode 100644
index 2876c022..00000000
--- a/libmproxy/protocol2/http_proxy.py
+++ /dev/null
@@ -1,26 +0,0 @@
-from __future__ import (absolute_import, print_function, division)
-
-from .layer import Layer, ServerConnectionMixin
-
-
-class HttpProxy(Layer, ServerConnectionMixin):
- def __call__(self):
- layer = self.ctx.next_layer(self)
- try:
- layer()
- finally:
- if self.server_conn:
- self._disconnect()
-
-
-class HttpUpstreamProxy(Layer, ServerConnectionMixin):
- def __init__(self, ctx, server_address):
- super(HttpUpstreamProxy, self).__init__(ctx, server_address=server_address)
-
- def __call__(self):
- layer = self.ctx.next_layer(self)
- try:
- layer()
- finally:
- if self.server_conn:
- self._disconnect()