aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol2/transparent_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/protocol2/transparent_proxy.py')
-rw-r--r--libmproxy/protocol2/transparent_proxy.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/libmproxy/protocol2/transparent_proxy.py b/libmproxy/protocol2/transparent_proxy.py
deleted file mode 100644
index e6ebf115..00000000
--- a/libmproxy/protocol2/transparent_proxy.py
+++ /dev/null
@@ -1,24 +0,0 @@
-from __future__ import (absolute_import, print_function, division)
-
-from ..exceptions import ProtocolException
-from .. import platform
-from .layer import Layer, ServerConnectionMixin
-
-
-class TransparentProxy(Layer, ServerConnectionMixin):
- def __init__(self, ctx):
- super(TransparentProxy, self).__init__(ctx)
- self.resolver = platform.resolver()
-
- def __call__(self):
- try:
- self.server_conn.address = self.resolver.original_addr(self.client_conn.connection)
- except Exception as e:
- raise ProtocolException("Transparent mode failure: %s" % repr(e), e)
-
- layer = self.ctx.next_layer(self)
- try:
- layer()
- finally:
- if self.server_conn:
- self._disconnect()