diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-08-30 15:27:29 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-08-30 15:27:29 +0200 |
commit | a86ec56012136664688fa4a8efcd866b5e3e17a8 (patch) | |
tree | d8aa559db0e3c83a56bc3bac850021f133ad1248 /libmproxy/proxy/modes/http_proxy.py | |
parent | 421b241ff010ae979cff8df504b6744e4c291aeb (diff) | |
download | mitmproxy-a86ec56012136664688fa4a8efcd866b5e3e17a8.tar.gz mitmproxy-a86ec56012136664688fa4a8efcd866b5e3e17a8.tar.bz2 mitmproxy-a86ec56012136664688fa4a8efcd866b5e3e17a8.zip |
move files around
Diffstat (limited to 'libmproxy/proxy/modes/http_proxy.py')
-rw-r--r-- | libmproxy/proxy/modes/http_proxy.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libmproxy/proxy/modes/http_proxy.py b/libmproxy/proxy/modes/http_proxy.py new file mode 100644 index 00000000..90c54cc6 --- /dev/null +++ b/libmproxy/proxy/modes/http_proxy.py @@ -0,0 +1,26 @@ +from __future__ import (absolute_import, print_function, division) + +from ...protocol 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() |