aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/websocket.py
Commit message (Collapse)AuthorAgeFilesLines
* Record float timestamp for WebSocket messages instead of truncating to intJustAnotherArchivist2020-05-091-2/+2
|
* websocket: inject messages via flowThomas Kriechbaumer2018-05-161-0/+28
|
* fix Python 3.6 variable type annotations #3053oscure762018-04-141-2/+2
|
* fix docstringThomas Kriechbaumer2018-03-101-1/+1
|
* unvendor wsprotoThomas Kriechbaumer2018-01-011-5/+6
|
* websocket: docs++ and kill messagesThomas Kriechbaumer2017-12-271-6/+31
| | | | fixes #2724
* add testsThomas Kriechbaumer2017-12-181-1/+1
|
* fix #2640Thomas Kriechbaumer2017-12-181-5/+13
|
* mitmproxy.types -> mitmproxy.coretypesAldo Cortesi2017-12-171-1/+1
| | | | | | | | | | The types name is valuable, and we have a better use for it in collecting and exposing types for options and commands. The coretypes module should probably be split up anyway - it contains a threading base class, a few container objects, and the defintion of our serialization protocol. I was tempted to rename it to "uncagegorized" for the sake of honesty.
* websocket streamingUjjwal Verma2017-07-041-0/+1
|
* Fix ip formatting in websocket messagesUjjwal Verma2017-06-181-3/+3
|
* Make mypy succeed with imports on master.pyAldo Cortesi2017-03-171-4/+7
| | | | | | | | | | | | | | | | | | We get little benefit from our mypy QA checks at the moment, because we skip imports. This patch is what's needed to make mypy succeed with imports on a single file: master.py It also updates mypy to the current version, and enables a QA check. Mypy bugs I encountered: dict.update with kwargs not supported: https://github.com/python/mypy/issues/1031 property setters and getters must be adjacent: https://github.com/python/mypy/issues/1465
* make websocket flows serializableThomas Kriechbaumer2017-03-091-26/+25
| | | | fixes #2113
* websockets, tcp, version: coverage++Thomas Kriechbaumer2017-02-091-44/+56
|
* add more websocket indicators to mitmproxy and mitmdumpThomas Kriechbaumer2016-11-231-1/+5
|
* websocket: add testsThomas Kriechbaumer2016-11-231-1/+1
|
* add WebSocket flows and messagesThomas Kriechbaumer2016-11-231-0/+83