mitmproxy/libmproxy/proxy/modes/reverse_proxy.py

18 lines
531 B
Python
Raw Normal View History

2015-08-06 10:32:33 +00:00
from __future__ import (absolute_import, print_function, division)
2015-08-30 13:27:29 +00:00
from ...protocol import Layer, ServerConnectionMixin
2015-08-06 10:32:33 +00:00
class ReverseProxy(Layer, ServerConnectionMixin):
def __init__(self, ctx, server_address, server_tls):
2015-08-16 21:25:02 +00:00
super(ReverseProxy, self).__init__(ctx, server_address=server_address)
self.server_tls = server_tls
2015-08-06 10:32:33 +00:00
def __call__(self):
layer = self.ctx.next_layer(self)
2015-08-18 13:59:44 +00:00
try:
layer()
finally:
if self.server_conn:
2015-08-29 23:21:58 +00:00
self._disconnect()