diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-02-05 14:33:17 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-02-05 14:33:17 +0100 |
commit | d864a326d25815a240aa5ac34171e48687311f29 (patch) | |
tree | 8041cd128cc7a261687f696cdc33e4e6707e66d9 /libmproxy/proxy.py | |
parent | 6a53ae5fd37b516074f9bf46cffab015f6626b9e (diff) | |
download | mitmproxy-d864a326d25815a240aa5ac34171e48687311f29.tar.gz mitmproxy-d864a326d25815a240aa5ac34171e48687311f29.tar.bz2 mitmproxy-d864a326d25815a240aa5ac34171e48687311f29.zip |
fix all tests except those using set_url and get_url
Diffstat (limited to 'libmproxy/proxy.py')
-rw-r--r-- | libmproxy/proxy.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index feff2259..53e3f575 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -55,6 +55,10 @@ class ClientConnection(tcp.BaseHandler, stateobject.SimpleStateObject): if client_connection: # Eventually, this object is restored from state. We don't have a connection then. tcp.BaseHandler.__init__(self, client_connection, address, server) else: + self.connection = None + self.server = None + self.wfile = None + self.rfile = None self.address = None self.clientcert = None @@ -86,7 +90,7 @@ class ClientConnection(tcp.BaseHandler, stateobject.SimpleStateObject): @classmethod def _from_state(cls, state): - f = cls(None, None, None) + f = cls(None, tuple(), None) f._load_state(state) return f @@ -141,7 +145,7 @@ class ServerConnection(tcp.TCPClient, stateobject.SimpleStateObject): @classmethod def _from_state(cls, state): - f = cls(None) + f = cls(tuple()) f._load_state(state) return f |