diff options
-rw-r--r-- | mitmproxy/models/flow.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mitmproxy/models/flow.py b/mitmproxy/models/flow.py index f4993b7a..bdbc0929 100644 --- a/mitmproxy/models/flow.py +++ b/mitmproxy/models/flow.py @@ -79,6 +79,7 @@ class Flow(stateobject.StateObject): self.intercepted = False # type: bool self._backup = None # type: Optional[Flow] self.reply = None + self.marked = False # type: bool _stateobject_attributes = dict( id=str, @@ -86,7 +87,8 @@ class Flow(stateobject.StateObject): client_conn=ClientConnection, server_conn=ServerConnection, type=str, - intercepted=bool + intercepted=bool, + marked=bool, ) def get_state(self): |