diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-08-11 20:27:34 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-08-11 20:32:14 +0200 |
commit | aef3b626a70de5f385c8f5496c2e49575b5c3e1c (patch) | |
tree | 868b8786906eb7bdc1a269b64494594c5831b54b /libmproxy/protocol2/http_proxy.py | |
parent | 026330a3b014f24f095b839b29186036854de3bc (diff) | |
download | mitmproxy-aef3b626a70de5f385c8f5496c2e49575b5c3e1c.tar.gz mitmproxy-aef3b626a70de5f385c8f5496c2e49575b5c3e1c.tar.bz2 mitmproxy-aef3b626a70de5f385c8f5496c2e49575b5c3e1c.zip |
wip commit
Diffstat (limited to 'libmproxy/protocol2/http_proxy.py')
-rw-r--r-- | libmproxy/protocol2/http_proxy.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libmproxy/protocol2/http_proxy.py b/libmproxy/protocol2/http_proxy.py new file mode 100644 index 00000000..6b3b6a82 --- /dev/null +++ b/libmproxy/protocol2/http_proxy.py @@ -0,0 +1,23 @@ +from __future__ import (absolute_import, print_function, division) + +from .layer import Layer, ServerConnectionMixin +from .http import HttpLayer + + +class HttpProxy(Layer): + def __call__(self): + layer = HttpLayer(self) + for message in layer(): + yield message + + +class HttpUpstreamProxy(Layer, ServerConnectionMixin): + def __init__(self, ctx, server_address): + super(HttpUpstreamProxy, self).__init__(ctx) + self.server_address = server_address + + def __call__(self): + layer = HttpLayer(self) + for message in layer(): + if not self._handle_server_message(message): + yield message |