mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
27 lines
723 B
Python
27 lines
723 B
Python
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()
|