From 0176f50e4f4994be4b19be212f3a3db053a18d0c Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 29 May 2016 12:54:52 +1200 Subject: Adapt examples --- examples/stickycookies | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 examples/stickycookies (limited to 'examples/stickycookies') diff --git a/examples/stickycookies b/examples/stickycookies old mode 100644 new mode 100755 index 8f11de8d..43e5371d --- a/examples/stickycookies +++ b/examples/stickycookies @@ -21,19 +21,19 @@ class StickyMaster(controller.Master): except KeyboardInterrupt: self.shutdown() - def handle_request(self, flow): + @controller.handler + def request(self, flow): hid = (flow.request.host, flow.request.port) if "cookie" in flow.request.headers: self.stickyhosts[hid] = flow.request.headers.get_all("cookie") elif hid in self.stickyhosts: flow.request.headers.set_all("cookie", self.stickyhosts[hid]) - flow.reply() - def handle_response(self, flow): + @controller.handler + def response(self, flow): hid = (flow.request.host, flow.request.port) if "set-cookie" in flow.response.headers: self.stickyhosts[hid] = flow.response.headers.get_all("set-cookie") - flow.reply() config = proxy.ProxyConfig(port=8080) -- cgit v1.2.3