aboutsummaryrefslogtreecommitdiffstats
path: root/netlib
Commit message (Collapse)AuthorAgeFilesLines
...
* add ssl peek polyfillMaximilian Hils2015-08-191-2/+18
|
* http2: implement request targetThomas Kriechbaumer2015-08-182-8/+34
|
* http2: add support for too large header framesThomas Kriechbaumer2015-08-181-10/+19
|
* http2: add support for too large data framesThomas Kriechbaumer2015-08-181-8/+11
|
* TCPClient: more sophisticated address handlingMaximilian Hils2015-08-182-12/+25
|
* add Reader.peek()Maximilian Hils2015-08-181-0/+18
|
* re-add form_outMaximilian Hils2015-08-182-4/+10
|
* Bump netlib version - 0.13.1 is already outAldo Cortesi2015-08-171-1/+1
|
* allow direct ALPN callback methodThomas Kriechbaumer2015-08-161-1/+6
|
* add HTTP/1.1 ALPN version stringThomas Kriechbaumer2015-08-151-0/+2
|
* fix minor style offencesThomas Kriechbaumer2015-08-102-11/+11
|
* cleanup whitespaceThomas Kriechbaumer2015-08-109-36/+56
|
* cleanup importsThomas Kriechbaumer2015-08-105-16/+4
|
* add move tests and code from mitmproxyThomas Kriechbaumer2015-08-105-33/+87
|
* fix mitmproxy/mitmproxy#705Maximilian Hils2015-08-032-14/+17
|
* fix mitmproxy testsThomas Kriechbaumer2015-08-022-3/+6
|
* fix tutils importsThomas Kriechbaumer2015-08-011-1/+1
|
* move code from mitmproxy to netlibThomas Kriechbaumer2015-08-016-109/+616
|
* http2: improve protocolThomas Kriechbaumer2015-07-302-22/+46
|
* add on-the-wire representation methodsThomas Kriechbaumer2015-07-294-139/+279
|
* move code from mitmproxy to netlibThomas Kriechbaumer2015-07-273-30/+163
|
* improve pyopenssl version checkMaximilian Hils2015-07-251-1/+1
|
* Merge pull request #81 from Kriechi/protocol-refactorMaximilian Hils2015-07-2417-724/+855
|\ | | | | HTTP protocol refactoring
| * fix bugsThomas Kriechbaumer2015-07-222-26/+28
| |
| * http2: make proper use of odictThomas Kriechbaumer2015-07-222-10/+11
| |
| * reduce public interfaceThomas Kriechbaumer2015-07-221-281/+282
| | | | | | use private indicator pattern “_methodname”
| * introduce EmptyRequest classThomas Kriechbaumer2015-07-222-2/+19
| |
| * rename content -> bodyThomas Kriechbaumer2015-07-221-3/+3
| |
| * introduce ConnectRequest classThomas Kriechbaumer2015-07-223-6/+22
| |
| * add Request class and unify read_request interfaceThomas Kriechbaumer2015-07-224-20/+54
| |
| * refactor HTTP/1 as protocolThomas Kriechbaumer2015-07-221-444/+457
| |
| * change HTTP2 interface to match HTTP1Thomas Kriechbaumer2015-07-221-3/+3
| |
| * extract authentication methods from protocolThomas Kriechbaumer2015-07-223-39/+36
| |
| * move bits aroundThomas Kriechbaumer2015-07-2215-111/+130
| |
| * refactor websockets into protocolThomas Kriechbaumer2015-07-223-113/+133
| |
| * introduce http_semantics moduleThomas Kriechbaumer2015-07-222-14/+25
| | | | | | | | | | used for generic HTTP representation everything should apply for HTTP/1 and HTTP/2
* | add distinct error for cert verification issuesMaximilian Hils2015-07-242-4/+9
|/
* bump versionMaximilian Hils2015-07-221-1/+1
|
* Added a fix for pre-1.0 OpenSSL which wasn't correctly erring on failed ↵Kyle Morton2015-07-211-0/+7
| | | | certificate validation
* Fixing default CA which ought to be read as a pemfile and not a directoryKyle Morton2015-07-211-1/+1
|
* bump versionMaximilian Hils2015-07-221-1/+1
|
* Fixed version error formatting issueM. Utku Altinkaya2015-07-211-1/+1
|
* socks: optionally fail earlyMaximilian Hils2015-07-031-5/+10
|
* socks: add assert_socks5 methodMaximilian Hils2015-07-031-7/+34
|
* Fixing how certifi is made the default ca_path to simplify calling logic.Kyle Morton2015-06-261-1/+3
|
* remove certffiMaximilian Hils2015-06-262-47/+0
|
* Fix printing of SSL version errorAldo Cortesi2015-06-251-1/+1
| | | | Fixes #73
* Merge pull request #76 from kyle-m/masterAldo Cortesi2015-06-241-10/+14
|\ | | | | Provide debugging information when upstream server certificate fails validation
| * Cleaning up upstream server verification. Adding storage of cerificateKyle Morton2015-06-221-8/+8
| | | | | | | | | | verification errors on TCPClient object to enable warnings in downstream projects.
| * Updating TCPServer to allow tests (and potentially other use cases) to serveKyle Morton2015-06-221-2/+6
| | | | | | | | certificate chains instead of only single certificates.