aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Py3: Find Content-Length header by bytesShadab Zafar2016-06-151-1/+1
|
* Py3: pathocShadab Zafar2016-06-153-26/+34
|
* Py3: pathodShadab Zafar2016-06-152-14/+10
|
* Py3: websocketsShadab Zafar2016-06-153-5/+6
|
* Py3: fix http2 bytes issueShadab Zafar2016-06-152-3/+3
|
* Merge pull request #1257 from tdickers/masterMaximilian Hils2016-06-142-4/+7
|\ | | | | Make har_extractor.py output HAR 1.2 spec-compliant
| * Make har_extractor.py output HAR 1.2 spec-compliantTai Dickerson2016-06-142-4/+7
|/ | | | | | | | HAR files were failing to load in harviewer (http://www.softwareishard.com/har/viewer/) due to: - ISO 8601 dates for startedDateTime missing timezone (http://www.softwareishard.com/blog/har-12-spec/#pages) -- Used UTC but could add detection of default system timezone if desired - pages object missing pageTimings (http://www.softwareishard.com/blog/har-12-spec/#pageTimings) -- Used {} because all child fields are optional
* Merge pull request #1253 from mhils/fix-debugAldo Cortesi2016-06-142-3/+9
|\ | | | | Fix Debug Mode on Windows
| * fix debug mode on WindowsMaximilian Hils2016-06-132-3/+9
| |
* | Merge pull request #1251 from cortesi/netlibraceAldo Cortesi2016-06-146-324/+337
|\ \ | | | | | | Roll connect handlers and thread leak detection out in more of the netlib test suite
| * \ Merge branch 'master' into netlibraceAldo Cortesi2016-06-1416-34/+63
| |\ \ | |/ / |/| |
* | | Merge pull request #1254 from mitmproxy/scriptargsAldo Cortesi2016-06-1416-34/+63
|\ \ \ | |_|/ |/| | Inline Scripts: use sys.argv instead of args argument.
| * | Don't fail when start() is not definedAldo Cortesi2016-06-141-1/+1
| | |
| * | update examples, tests, docsMaximilian Hils2016-06-1315-32/+39
| | |
| * | fix contextmanager, remove args argument to start()Maximilian Hils2016-06-131-3/+15
| | |
| * | A tiny wrapper to make script invocations nicerAldo Cortesi2016-06-141-1/+11
|/ /
| * Fix Python3 testsAldo Cortesi2016-06-141-1/+1
| |
| * Merge branch 'netlibrace' of github.com:cortesi/mitmproxy into netlibraceAldo Cortesi2016-06-140-0/+0
| |\
| | * Use handlers in http2 test suiteAldo Cortesi2016-06-141-100/+100
| | |
| | * Merge remote-tracking branch 'upstream/master' into netlibraceAldo Cortesi2016-06-141-55/+83
| | |\ | |_|/ |/| |
| | * Start rolling out leak detection in netlibAldo Cortesi2016-06-125-224/+237
| | |
| * | Satisfy lintAldo Cortesi2016-06-141-1/+1
| | |
| * | Use handlers in http2 test suiteAldo Cortesi2016-06-141-100/+100
| | |
| * | Start rolling out leak detection in netlibAldo Cortesi2016-06-145-224/+237
|/ /
* | Merge pull request #1242 from Kriechi/fix-1240Thomas Kriechbaumer2016-06-121-55/+83
|\ \ | |/ |/| fix #1240
| * fix #1240Thomas Kriechbaumer2016-06-121-55/+83
|/
* Merge pull request #1247 from cortesi/appveyorAldo Cortesi2016-06-123-43/+62
|\ | | | | Be stricter about handling connetcts in the pathoc test suite
| * Merge branch 'master' into appveyorAldo Cortesi2016-06-1216-51/+34
| |\ | |/ |/|
* | Merge pull request #1246 from cortesi/versionAldo Cortesi2016-06-1216-51/+34
|\ \ | | | | | | Fold mitmproxy.version and pathod.version into netlib.version
| * | Fold mitmproxy.version and pathod.version into netlib.versionAldo Cortesi2016-06-1216-51/+34
|/ /
| * Make the tcp connection closer cancellableAldo Cortesi2016-06-122-42/+55
| | | | | | | | And use this to make pathoc error handling more sophisticated
| * Be stricter about handling connetcts in the pathoc test suiteAldo Cortesi2016-06-121-1/+7
|/ | | | Attempt to clear a niggling Appveyor exception buggering up our CI.
* Merge pull request #1243 from cortesi/debug2Thomas Kriechbaumer2016-06-113-2/+26
|\ | | | | debug: On SIGUSR2, we dump tracebacks for all threads to screen
| * Satisfy lintAldo Cortesi2016-06-111-1/+5
| |
| * debug: On SIGUSR2, we dump tracebacks for all threads to screenAldo Cortesi2016-06-113-2/+22
|/
* Merge pull request #1241 from cortesi/debugAldo Cortesi2016-06-1113-46/+183
|\ | | | | Debug
| * Zap stray semicolonAldo Cortesi2016-06-111-1/+1
| |
| * debug: num_fds is posix-onlyAldo Cortesi2016-06-111-1/+2
| |
| * debug: add OpenSSLAldo Cortesi2016-06-111-0/+3
| |
| * debug: verison -> versionAldo Cortesi2016-06-111-1/+1
| | | | | | | | @resam blew our sponsorship - t-mobile is up next
| * Improve debugging of thread and other leaksAldo Cortesi2016-06-1112-50/+138
| | | | | | | | | | | | | | - 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
| * debug.sysinfo: tests and coverageAldo Cortesi2016-06-112-6/+15
| |
| * Add a --sysinfo flag to all daemonsAldo Cortesi2016-06-113-8/+44
|/ | | | | This dumps all the platform information and mitmproxy version data we'd normally need to troubleshoot an issue.
* Merge pull request #1238 from cortesi/toxfiddleAldo Cortesi2016-06-112-8/+20
|\ | | | | Distinguish between CI and interactive versions of tox
| * Merge branch 'master' into toxfiddleAldo Cortesi2016-06-1126-1036/+1103
| |\ | |/ |/|
* | Merge remote-tracking branch 'jason/master'Maximilian Hils2016-06-1026-1036/+1103
|\ \
| * | [web] update buildJason2016-06-093-61562/+493
| | |
| * | [web] header.js -> Header.jsJason2016-06-0914-988/+62122
| | |
| * | [web] eventlog.js -> EventLog.jsxJason2016-06-096-191/+182
| | |
| * | [web] footer.js -> Footer.jsxJason2016-06-093-41/+38
| | |