Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add on-the-wire representation methods | Thomas Kriechbaumer | 2015-07-29 | 4 | -139/+279 |
| | |||||
* | move code from mitmproxy to netlib | Thomas Kriechbaumer | 2015-07-27 | 3 | -30/+163 |
| | |||||
* | 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 | 17 | -724/+855 |
|\ | | | | | HTTP protocol refactoring | ||||
| * | fix bugs | Thomas Kriechbaumer | 2015-07-22 | 2 | -26/+28 |
| | | |||||
| * | http2: make proper use of odict | Thomas Kriechbaumer | 2015-07-22 | 2 | -10/+11 |
| | | |||||
| * | reduce public interface | Thomas Kriechbaumer | 2015-07-22 | 1 | -281/+282 |
| | | | | | | use private indicator pattern “_methodname” | ||||
| * | introduce EmptyRequest class | Thomas Kriechbaumer | 2015-07-22 | 2 | -2/+19 |
| | | |||||
| * | rename content -> body | Thomas Kriechbaumer | 2015-07-22 | 1 | -3/+3 |
| | | |||||
| * | introduce ConnectRequest class | Thomas Kriechbaumer | 2015-07-22 | 3 | -6/+22 |
| | | |||||
| * | add Request class and unify read_request interface | Thomas Kriechbaumer | 2015-07-22 | 4 | -20/+54 |
| | | |||||
| * | refactor HTTP/1 as protocol | Thomas Kriechbaumer | 2015-07-22 | 1 | -444/+457 |
| | | |||||
| * | change HTTP2 interface to match HTTP1 | Thomas Kriechbaumer | 2015-07-22 | 1 | -3/+3 |
| | | |||||
| * | extract authentication methods from protocol | Thomas Kriechbaumer | 2015-07-22 | 3 | -39/+36 |
| | | |||||
| * | move bits around | Thomas Kriechbaumer | 2015-07-22 | 15 | -111/+130 |
| | | |||||
| * | refactor websockets into protocol | Thomas Kriechbaumer | 2015-07-22 | 3 | -113/+133 |
| | | |||||
| * | introduce http_semantics module | Thomas Kriechbaumer | 2015-07-22 | 2 | -14/+25 |
| | | | | | | | | | | 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 | 2 | -4/+9 |
|/ | |||||
* | bump version | Maximilian Hils | 2015-07-22 | 1 | -1/+1 |
| | |||||
* | 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 | ||||
* | Fixing default CA which ought to be read as a pemfile and not a directory | Kyle Morton | 2015-07-21 | 1 | -1/+1 |
| | |||||
* | bump version | Maximilian Hils | 2015-07-22 | 1 | -1/+1 |
| | |||||
* | Fixed version error formatting issue | M. Utku Altinkaya | 2015-07-21 | 1 | -1/+1 |
| | |||||
* | socks: optionally fail early | Maximilian Hils | 2015-07-03 | 1 | -5/+10 |
| | |||||
* | socks: add assert_socks5 method | Maximilian Hils | 2015-07-03 | 1 | -7/+34 |
| | |||||
* | Fixing how certifi is made the default ca_path to simplify calling logic. | Kyle Morton | 2015-06-26 | 1 | -1/+3 |
| | |||||
* | remove certffi | Maximilian Hils | 2015-06-26 | 2 | -47/+0 |
| | |||||
* | Fix printing of SSL version error | Aldo Cortesi | 2015-06-25 | 1 | -1/+1 |
| | | | | Fixes #73 | ||||
* | Merge pull request #76 from kyle-m/master | Aldo Cortesi | 2015-06-24 | 1 | -10/+14 |
|\ | | | | | Provide debugging information when upstream server certificate fails validation | ||||
| * | Cleaning up upstream server verification. Adding storage of cerificate | Kyle Morton | 2015-06-22 | 1 | -8/+8 |
| | | | | | | | | | | verification errors on TCPClient object to enable warnings in downstream projects. | ||||
| * | Updating TCPServer to allow tests (and potentially other use cases) to serve | Kyle Morton | 2015-06-22 | 1 | -2/+6 |
| | | | | | | | | certificate chains instead of only single certificates. | ||||
* | | Merge branch 'Kriechi-ssl-version-handling' | Aldo Cortesi | 2015-06-23 | 1 | -7/+18 |
|\ \ | |||||
| * | | unify SSL version/method handling | Thomas Kriechbaumer | 2015-06-22 | 1 | -7/+18 |
| |/ | |||||
* / | Remove dependence on pathod in test suite. | Aldo Cortesi | 2015-06-23 | 1 | -1/+20 |
|/ | |||||
* | netlib/test.py -> test/tservers.py | Aldo Cortesi | 2015-06-22 | 1 | -108/+0 |
| | |||||
* | fix http user agents | Thomas Kriechbaumer | 2015-06-18 | 1 | -2/+2 |
| | |||||
* | mark unused variables and arguments | Thomas Kriechbaumer | 2015-06-18 | 7 | -26/+24 |
| | |||||
* | Merge branch 'master' of https://github.com/kyle-m/netlib into kyle-m-master | Aldo Cortesi | 2015-06-18 | 1 | -3/+3 |
|\ | |||||
| * | Adding certifi as default CA bundle. | Kyle Morton | 2015-06-16 | 1 | -3/+3 |
| | | |||||
* | | Only set OP_NO_COMPRESSION by default if it exists in our version of OpenSSL | Aldo Cortesi | 2015-06-18 | 1 | -1/+12 |
| | | | | | | | | | | We'll need to start testing under both new and old versions of OpenSSL somehow to catch these... | ||||
* | | Merge pull request #71 from Kriechi/landscape | Aldo Cortesi | 2015-06-18 | 7 | -58/+56 |
|\ \ | | | | | | | fix warnings and code smells | ||||
| * | | fix warnings and code smells | Thomas Kriechbaumer | 2015-06-17 | 7 | -58/+56 |
| | | | | | | | | | | | | use prospector to find them | ||||
* | | | http2: improve :authority header | Thomas Kriechbaumer | 2015-06-16 | 1 | -0/+3 |
| | | | |||||
* | | | http2: improve test suite | Thomas Kriechbaumer | 2015-06-16 | 2 | -12/+13 |
| | | | |||||
* | | | http2: return stream_id from request for response | Thomas Kriechbaumer | 2015-06-16 | 1 | -4/+7 |
| | | | |||||
* | | | http2: fix header_block_fragments and length | Thomas Kriechbaumer | 2015-06-16 | 2 | -10/+26 |
| | | | |||||
* | | | http2: only first headers frame as END_STREAM flag | Thomas Kriechbaumer | 2015-06-16 | 1 | -2/+2 |
| | | | |||||
* | | | http2: improve frame output | Thomas Kriechbaumer | 2015-06-16 | 1 | -5/+6 |
| | | | |||||
* | | | add elliptic curve during TLS handshake | Thomas Kriechbaumer | 2015-06-16 | 1 | -8/+5 |
| | | | |||||
* | | | http2: improve frame output | Thomas Kriechbaumer | 2015-06-16 | 2 | -33/+39 |
|/ / |