aboutsummaryrefslogtreecommitdiffstats
path: root/pathod
Commit message (Collapse)AuthorAgeFilesLines
* netlib.tutils -> mitmproxy.test.tutilsAldo Cortesi2016-10-201-1/+1
| | | | There's a LOT more to be done refactoring our different conflicting test utils.
* netlib.exceptions.* -> mitmproxy.exceptionsAldo Cortesi2016-10-205-9/+9
|
* netlib.certutils -> mitmproxy.certsAldo Cortesi2016-10-202-14/+20
|
* netlib.utils.BiDi -> mitmproxy.types.bidi.BiDiAldo Cortesi2016-10-201-2/+2
|
* mitmproxy.types.[basethread,multidict,serializable]Aldo Cortesi2016-10-202-2/+2
|
* netlib.strutils -> mitmproxy.utils.strutilsAldo Cortesi2016-10-205-5/+5
|
* netlib.human -> mitmproxy.utils.humanAldo Cortesi2016-10-203-3/+4
|
* Create mitmproxy.utils hierarchyAldo Cortesi2016-10-201-2/+3
| | | | - Add mitproxy.utils.lrucache, mitproxy.utils.data
* netlib.version -> mitmproxy.versionAldo Cortesi2016-10-204-4/+4
|
* pathoc: handle error when selecting on read fileAldo Cortesi2016-10-191-1/+4
|
* pathoc: Guess the Host header from the path if possibleAldo Cortesi2016-10-191-3/+14
|
* remove empty lines at beginning of fileThomas Kriechbaumer2016-10-173-3/+0
|
* python3: clean up super and __future__Aldo Cortesi2016-10-175-5/+0
|
* python3: clean up class bracketsAldo Cortesi2016-10-1711-16/+16
|
* Zap object base classAldo Cortesi2016-10-1711-16/+16
|
* pathod: remove sixAldo Cortesi2016-10-177-19/+11
|
* First-order conversion to Python3-onlyAldo Cortesi2016-10-172-3/+2
| | | | | | - Zap various occurrences of Python2 in docs and scripts - Remove six from netlib, and some other places where obvious project-wide search and replace works.
* http2: frames don't have a human_readable methodAldo Cortesi2016-10-041-4/+4
|
* websockets_handshake -> websocket_handshakeAldo Cortesi2016-10-041-3/+3
| | | | The plural feels awkward.
* fix #1221 (#1578)Maximilian Hils2016-09-242-9/+19
|
* minor cleanupsMaximilian Hils2016-09-242-4/+4
|
* fix pathod http2 response creationMaximilian Hils2016-09-212-3/+3
|
* http2: improve framereaderThomas Kriechbaumer2016-09-031-1/+1
|
* add websockets support to mitmproxyThomas Kriechbaumer2016-09-014-8/+9
|
* add escape_single_quotes=False arg to bytes_to_escaped_strMaximilian Hils2016-07-292-5/+5
|
* sni is now str, not bytesMaximilian Hils2016-07-061-1/+4
|
* fix pathod log encodingMaximilian Hils2016-07-061-3/+9
|
* remove clean_bin, clarify unicode handlingMaximilian Hils2016-07-051-2/+3
|
* py3: fix bytes vs. strThomas Kriechbaumer2016-07-031-5/+5
|
* h2: move header parsing to netlibShadab Zafar2016-07-031-39/+7
|
* minor fixesMaximilian Hils2016-07-012-2/+2
|
* py3++: test/mitmproxy/test_serverShadab Zafar2016-07-011-1/+1
|
* move custom HTTP/2 stack from netlib to pathodThomas Kriechbaumer2016-06-172-9/+442
|
* pathoc: use idna encoding for hostnamesMaximilian Hils2016-06-161-1/+1
|
* Py3: Send bytes to get_certShadab Zafar2016-06-161-1/+1
|
* Py3: pathoc should send bytes over wireShadab Zafar2016-06-162-5/+5
|
* Unexpected spaces around =Shadab Zafar2016-06-151-1/+1
|
* Py3: Split on byte newlines in pathod.logShadab Zafar2016-06-151-1/+1
|
* Py3: Find Content-Length header by bytesShadab Zafar2016-06-151-1/+1
|
* Py3: pathocShadab Zafar2016-06-151-10/+17
|
* Py3: pathodShadab Zafar2016-06-151-11/+7
|
* Py3: websocketsShadab Zafar2016-06-152-3/+4
|
* Py3: fix http2 bytes issueShadab Zafar2016-06-151-1/+1
|
* Start rolling out leak detection in netlibAldo Cortesi2016-06-141-13/+1
|
* Merge branch 'master' into appveyorAldo Cortesi2016-06-125-21/+15
|\
| * Fold mitmproxy.version and pathod.version into netlib.versionAldo Cortesi2016-06-125-21/+15
| |
* | Make the tcp connection closer cancellableAldo Cortesi2016-06-121-33/+34
|/ | | | And use this to make pathoc error handling more sophisticated
* Improve debugging of thread and other leaksAldo Cortesi2016-06-112-21/+20
| | | | | | | - Add basethread.BaseThread that all threads outside of test suites should use - Add a signal handler to mitmproxy, mitmdump and mitmweb that dumps resource information to screen when SIGUSR1 is received. - Improve thread naming throughout to make thread dumps understandable
* Fix a crash when pathoc connections failAldo Cortesi2016-06-102-66/+62
| | | | Use the new handler to tidy this up.
* Remove timestamps from pathoc outputAldo Cortesi2016-06-103-16/+20
| | | | | | Pathoc is an interactive tool, no need for a long leading timestamp. More generally, make timestamps optional in the logging mechanism so we can configure this with command-line flags or something down the track.