Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | tcp._Connection: clean up code, fix inheritance | Maximilian Hils | 2015-08-19 | 1 | -13/+18 | |
| | ||||||
* | add ssl peek polyfill | Maximilian Hils | 2015-08-19 | 2 | -3/+19 | |
| | ||||||
* | Merge pull request #86 from Kriechi/http2-wip | Thomas Kriechbaumer | 2015-08-18 | 3 | -38/+166 | |
|\ | | | | | http2: fix TODOs | |||||
| * | http2: implement request target | Thomas Kriechbaumer | 2015-08-18 | 3 | -13/+110 | |
| | | ||||||
| * | http2: add support for too large header frames | Thomas Kriechbaumer | 2015-08-18 | 2 | -11/+34 | |
| | | ||||||
| * | http2: add support for too large data frames | Thomas Kriechbaumer | 2015-08-18 | 2 | -14/+22 | |
|/ | ||||||
* | fix request-target tests | Thomas Kriechbaumer | 2015-08-18 | 1 | -11/+4 | |
| | ||||||
* | temporarily disable pypy with new openssl on travis | Thomas Kriechbaumer | 2015-08-18 | 1 | -10/+10 | |
| | ||||||
* | temporarily disable pypy on travis | Thomas Kriechbaumer | 2015-08-18 | 1 | -1/+1 | |
| | ||||||
* | TCPClient: more sophisticated address handling | Maximilian Hils | 2015-08-18 | 2 | -12/+25 | |
| | ||||||
* | add Reader.peek() | Maximilian Hils | 2015-08-18 | 1 | -0/+18 | |
| | ||||||
* | re-add form_out | Maximilian Hils | 2015-08-18 | 2 | -4/+10 | |
| | ||||||
* | Bump netlib version - 0.13.1 is already out | Aldo Cortesi | 2015-08-17 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'master' of ssh.github.com:mitmproxy/netlib | Aldo Cortesi | 2015-08-16 | 1 | -1/+6 | |
|\ | ||||||
| * | allow direct ALPN callback method | Thomas Kriechbaumer | 2015-08-16 | 1 | -1/+6 | |
| | | ||||||
* | | Remove stray prints from test suite | Aldo Cortesi | 2015-08-16 | 3 | -3/+0 | |
|/ | ||||||
* | add HTTP/1.1 ALPN version string | Thomas Kriechbaumer | 2015-08-15 | 1 | -0/+2 | |
| | ||||||
* | Merge pull request #85 from Kriechi/http2-wip | Maximilian Hils | 2015-08-11 | 20 | -385/+858 | |
|\ | | | | | add move tests and code from mitmproxy | |||||
| * | fix minor style offences | Thomas Kriechbaumer | 2015-08-10 | 3 | -12/+11 | |
| | | ||||||
| * | cleanup whitespace | Thomas Kriechbaumer | 2015-08-10 | 12 | -43/+62 | |
| | | ||||||
| * | cleanup imports | Thomas Kriechbaumer | 2015-08-10 | 10 | -26/+13 | |
| | | ||||||
| * | add move tests and code from mitmproxy | Thomas Kriechbaumer | 2015-08-10 | 11 | -310/+778 | |
|/ | ||||||
* | fix mitmproxy/mitmproxy#705 | Maximilian Hils | 2015-08-03 | 3 | -23/+32 | |
| | ||||||
* | fix mitmproxy tests | Thomas Kriechbaumer | 2015-08-02 | 2 | -3/+6 | |
| | ||||||
* | move encoding tests from mitmproxy to netlib | Thomas Kriechbaumer | 2015-08-01 | 1 | -0/+32 | |
| | ||||||
* | fix tutils imports | Thomas Kriechbaumer | 2015-08-01 | 13 | -25/+19 | |
| | ||||||
* | move code from mitmproxy to netlib | Thomas Kriechbaumer | 2015-08-01 | 10 | -162/+885 | |
| | ||||||
* | Merge pull request #84 from Kriechi/http2-wip | Aldo Cortesi | 2015-08-01 | 7 | -142/+469 | |
|\ | | | | | [WIP] Protocol Refactoring for HTTP/2 | |||||
| * | http2: improve protocol | Thomas Kriechbaumer | 2015-07-30 | 3 | -26/+53 | |
| | | ||||||
| * | add on-the-wire representation methods | Thomas Kriechbaumer | 2015-07-29 | 5 | -157/+324 | |
| | | ||||||
| * | move code from mitmproxy to netlib | Thomas Kriechbaumer | 2015-07-27 | 5 | -34/+167 | |
|/ | ||||||
* | improve pyopenssl version check | Maximilian Hils | 2015-07-25 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #81 from Kriechi/protocol-refactor | Maximilian Hils | 2015-07-24 | 30 | -965/+1131 | |
|\ | | | | | HTTP protocol refactoring | |||||
| * | fix bugs | Thomas Kriechbaumer | 2015-07-22 | 3 | -32/+31 | |
| | | ||||||
| * | http2: make proper use of odict | Thomas Kriechbaumer | 2015-07-22 | 3 | -14/+15 | |
| | | ||||||
| * | reduce public interface | Thomas Kriechbaumer | 2015-07-22 | 2 | -309/+310 | |
| | | | | | | use private indicator pattern “_methodname” | |||||
| * | introduce EmptyRequest class | Thomas Kriechbaumer | 2015-07-22 | 2 | -2/+19 | |
| | | ||||||
| * | rename content -> body | Thomas Kriechbaumer | 2015-07-22 | 3 | -11/+11 | |
| | | ||||||
| * | introduce ConnectRequest class | Thomas Kriechbaumer | 2015-07-22 | 3 | -6/+22 | |
| | | ||||||
| * | add Request class and unify read_request interface | Thomas Kriechbaumer | 2015-07-22 | 5 | -24/+59 | |
| | | ||||||
| * | refactor HTTP/1 as protocol | Thomas Kriechbaumer | 2015-07-22 | 3 | -553/+583 | |
| | | ||||||
| * | change HTTP2 interface to match HTTP1 | Thomas Kriechbaumer | 2015-07-22 | 2 | -11/+15 | |
| | | ||||||
| * | extract authentication methods from protocol | Thomas Kriechbaumer | 2015-07-22 | 5 | -58/+57 | |
| | | ||||||
| * | move bits around | Thomas Kriechbaumer | 2015-07-22 | 28 | -290/+318 | |
| | | ||||||
| * | refactor websockets into protocol | Thomas Kriechbaumer | 2015-07-22 | 4 | -126/+151 | |
| | | ||||||
| * | introduce http_semantics module | Thomas Kriechbaumer | 2015-07-22 | 3 | -21/+32 | |
| | | | | | | | | | | used for generic HTTP representation everything should apply for HTTP/1 and HTTP/2 | |||||
* | | add distinct error for cert verification issues | Maximilian Hils | 2015-07-24 | 3 | -5/+10 | |
|/ | ||||||
* | bump version | Maximilian Hils | 2015-07-22 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #83 from kyle-m/master | Maximilian Hils | 2015-07-22 | 1 | -1/+8 | |
|\ | | | | | Fixing upstream certificate validation bugs | |||||
| * | Added a fix for pre-1.0 OpenSSL which wasn't correctly erring on failed ↵ | Kyle Morton | 2015-07-21 | 1 | -0/+7 | |
| | | | | | | | | certificate validation |