aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/protocol2/reverse_proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/protocol2/reverse_proxy.py')
-rw-r--r--libmproxy/protocol2/reverse_proxy.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/libmproxy/protocol2/reverse_proxy.py b/libmproxy/protocol2/reverse_proxy.py
index 76163c71..e959db86 100644
--- a/libmproxy/protocol2/reverse_proxy.py
+++ b/libmproxy/protocol2/reverse_proxy.py
@@ -5,17 +5,18 @@ from .tls import TlsLayer
class ReverseProxy(Layer, ServerConnectionMixin):
-
def __init__(self, ctx, server_address, client_tls, server_tls):
super(ReverseProxy, self).__init__(ctx, server_address=server_address)
self._client_tls = client_tls
self._server_tls = server_tls
def __call__(self):
+ # Always use a TLS layer here; if someone changes the scheme, there needs to be a
+ # TLS layer underneath.
layer = TlsLayer(self, self._client_tls, self._server_tls)
try:
layer()
finally:
if self.server_conn:
- self._disconnect() \ No newline at end of file
+ self._disconnect()