From d0c2d9480cdf80c680937c97c790add902f718fa Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 6 Feb 2011 10:28:43 +1300 Subject: Also serialize ClientConnection and flow backups. --- libmproxy/proxy.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'libmproxy/proxy.py') diff --git a/libmproxy/proxy.py b/libmproxy/proxy.py index 938c4d21..4c29d747 100644 --- a/libmproxy/proxy.py +++ b/libmproxy/proxy.py @@ -104,9 +104,9 @@ class Request(controller.Msg): ) @classmethod - def from_state(klass, state): + def from_state(klass, client_conn, state): return klass( - ClientConnection(None), + client_conn, state["host"], state["port"], state["scheme"], @@ -230,6 +230,13 @@ class ClientConnection(controller.Msg): self.address = address controller.Msg.__init__(self) + def get_state(self): + return self.address + + @classmethod + def from_state(klass, state): + return klass(state) + def set_replay(self): self.address = None -- cgit v1.2.3