diff options
| author | Shadab Zafar <dufferzafar0@gmail.com> | 2016-07-22 16:08:09 +0530 |
|---|---|---|
| committer | Shadab Zafar <dufferzafar0@gmail.com> | 2016-07-23 10:41:57 +0530 |
| commit | d6deec60b0e59c30e92da7fac5f4f453ce427559 (patch) | |
| tree | 65c9556c595acba6ac884ac79cc22559ec0414c0 | |
| parent | 08000c940ca2c6bcb2bf593961f6b88ee8426533 (diff) | |
| download | mitmproxy-d6deec60b0e59c30e92da7fac5f4f453ce427559.tar.gz mitmproxy-d6deec60b0e59c30e92da7fac5f4f453ce427559.tar.bz2 mitmproxy-d6deec60b0e59c30e92da7fac5f4f453ce427559.zip | |
Add marked attribute when converting flow to 0.18
| -rw-r--r-- | mitmproxy/flow/io_compat.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mitmproxy/flow/io_compat.py b/mitmproxy/flow/io_compat.py index 8cd883c3..061bf16d 100644 --- a/mitmproxy/flow/io_compat.py +++ b/mitmproxy/flow/io_compat.py @@ -60,6 +60,7 @@ def convert_017_018(data): data = convert_unicode(data) data["server_conn"]["ip_address"] = data["server_conn"].pop("peer_address") + data["marked"] = False data["version"] = (0, 18) return data |
