aboutsummaryrefslogtreecommitdiffstats
path: root/mitmproxy/http.py
Commit message (Collapse)AuthorAgeFilesLines
* view addon: systematize different flow typesMaximilian Hils2020-04-111-0/+4
|
* update mypyMaximilian Hils2019-11-121-27/+19
|
* fix Python 3.6 variable type annotations #3053oscure762018-04-141-6/+6
|
* fix revert of duplicated flowsMaximilian Hils2017-11-061-0/+1
|
* Make mypy succeed with imports on master.pyAldo Cortesi2017-03-171-7/+5
| | | | | | | | | | | | | | | | | | 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
* nuke tcp.Address and add proper IPv6 supportThomas Kriechbaumer2017-02-241-3/+1
|
* improve make_error_responseMaximilian Hils2017-02-151-7/+19
|
* lint!Maximilian Hils2016-11-181-0/+1
|
* Add HTTPFlow.mode to record the HTTP proxy layer modeAldo Cortesi2016-11-121-3/+6
|
* Remove sticky[auth,cookie] from http objectsAldo Cortesi2016-11-041-11/+0
| | | | | - they're unused - if we want them, they should be set by the addon in the new metadata store
* improve flow exportMaximilian Hils2016-10-221-6/+8
|
* The final piece: netlib -> mitproxy.netAldo Cortesi2016-10-201-6/+6
|
* netlib.version -> mitmproxy.versionAldo Cortesi2016-10-201-1/+1
|
* Move all tools into mitmproxy.tools, move models/* to top levelAldo Cortesi2016-10-191-0/+262
The primary motivation here (and for all the other moving around) is to present a clean "front of house" to library users, and to migrate primary objects to the top of the module hierarchy.