From 2a6698bf5a2ebe576ae0bbcacdee69d6eed10be9 Mon Sep 17 00:00:00 2001 From: Jake Drahos Date: Thu, 11 Jun 2015 20:27:33 -0500 Subject: Moved marking from flow to console No longer taints the flow primitive --- libmproxy/protocol/primitives.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'libmproxy/protocol') diff --git a/libmproxy/protocol/primitives.py b/libmproxy/protocol/primitives.py index 1d2389c3..2f8ea3e0 100644 --- a/libmproxy/protocol/primitives.py +++ b/libmproxy/protocol/primitives.py @@ -77,7 +77,6 @@ class Flow(stateobject.StateObject): """@type: bool""" self._backup = None self.reply = None - self.marked = False _stateobject_attributes = dict( id=str, @@ -166,12 +165,6 @@ class Flow(stateobject.StateObject): self.intercepted = False self.reply() master.handle_accept_intercept(self) - - def toggle_mark(self): - if self.marked: - self.marked = False - else: - self.marked = True class ProtocolHandler(object): -- cgit v1.2.3