aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | | | * simplify ALPNThomas Kriechbaumer2015-06-141-6/+2
| | | | |
| | | | * http2: add authority headerThomas Kriechbaumer2015-06-142-3/+7
| | | | |
| | | | * add new TLS methodsThomas Kriechbaumer2015-06-141-1/+4
| | | | |
| | | | * add more testsThomas Kriechbaumer2015-06-123-8/+92
| | | | |
| | | | * http2: add response creationThomas Kriechbaumer2015-06-122-16/+42
| | | | |
| | | | * http2: general improvementsThomas Kriechbaumer2015-06-122-26/+78
| | | | |
| | | | * improve ALPN integrationThomas Kriechbaumer2015-06-111-8/+15
| | | |/
| | * / include wheel as dev dependencyMaximilian Hils2015-06-181-0/+1
| | |/
| | * fix coding styleThomas Kriechbaumer2015-06-081-1/+1
| | |
| | * http2: add warning if raw data looks like HTTP/1Thomas Kriechbaumer2015-06-082-1/+5
| | |
| | * fix non-ALPN supported OpenSSL-related testsThomas Kriechbaumer2015-06-082-2/+11
| | |
| | * Merge pull request #66 from Kriechi/improve-alpn-supportAldo Cortesi2015-06-084-16/+63
| | |\ | | | | | | | | improve ALPN support on travis
| | | * improve ALPN support on travisThomas Kriechbaumer2015-06-082-14/+58
| | | |
| | | * ignore eggs directoryThomas Kriechbaumer2015-06-081-0/+1
| | | |
| | | * fix coding styleThomas Kriechbaumer2015-06-081-2/+4
| | |/
| | * http2: ditch the logging for nowAldo Cortesi2015-06-062-16/+0
| | | | | | | | | | | | | | | The API is well designed: it looks like we can get all the information we need to expose debugging in the caller of the API.
| | * http2: resolve module structure and circular dependenciesAldo Cortesi2015-06-063-187/+188
| | | | | | | | | | | | | | | | | | | | | | | | - Move implementation out of __init__.py to protocol.py (an anti-pattern because it makes the kind of structural refactoring we need hard) - protocol imports frame, frame does not import protocol. To do this, we shift the default settings to frame. If this feels wrong, we can move them to a separate module (defaults.py?.).
| | * Merge pull request #65 from Kriechi/h2-clientAldo Cortesi2015-06-0611-407/+795
| | |\ | | | | | | | | HTTP/2 protocol definition
| | | * http2: refactor hex to file adapterThomas Kriechbaumer2015-06-051-37/+27
| | | |
| | | * use open instead of fileThomas Kriechbaumer2015-06-051-2/+2
| | | |
| | | * http2: fix EchoHandler test helperThomas Kriechbaumer2015-06-051-3/+4
| | | |
| | | * make travis run all testsThomas Kriechbaumer2015-06-051-0/+0
| | | |
| | | * increase test coverageThomas Kriechbaumer2015-06-051-0/+5
| | | |
| | | * http2: add protocol testsThomas Kriechbaumer2015-06-055-14/+231
| | | |
| | | * http2: rename module and refactor as strategyThomas Kriechbaumer2015-06-053-8/+13
| | | |
| | | * http2: add logging and error handlingThomas Kriechbaumer2015-06-053-16/+42
| | | |
| | | * http2: change header_block_fragment handlingThomas Kriechbaumer2015-06-052-96/+80
| | | |
| | | * http2: add basic protocol handlingThomas Kriechbaumer2015-06-055-115/+212
| | | |
| | | * http2: introduce state for connection objectsThomas Kriechbaumer2015-06-051-39/+63
| | | |
| | | * http2: explicitly mention all arguments in testsThomas Kriechbaumer2015-06-051-122/+203
| | | |
| | | * http2: fix default settingsThomas Kriechbaumer2015-06-051-2/+2
| | | |
| | | * simplify default ssl params for test serversThomas Kriechbaumer2015-06-052-74/+32
| | | |
| | * | repr for websocket framesAldo Cortesi2015-06-051-0/+3
| | | |
| | * | Revert "tcp: clear_log to clear socket logs"Aldo Cortesi2015-06-052-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | start_log also clears the log, which is good enough. This reverts commit 4ca62e0d9bd09aa286cde9bafceff7204304d00c.
| | * | tcp: clear_log to clear socket logsAldo Cortesi2015-06-052-0/+5
| | |/
| | * Bump versionAldo Cortesi2015-06-041-1/+1
| | |
| | * Merge pull request #61 from Kriechi/distribute-cffiMaximilian Hils2015-05-312-3/+37
| | |\ | | | | | | | | distribute cffi correctly
| | | * distribute cffi correctlyThomas Kriechbaumer2015-05-302-3/+37
| | | |
| | * | websockets: nicer human readableAldo Cortesi2015-05-311-3/+5
| | | |
| | * | When we see an incomplete read with 0 bytes, it's a disconnectAldo Cortesi2015-05-311-3/+6
| | | | | | | | | | | | | | | | Partially fixes mitmproxy/mitmproxy:#593
| | * | Save first byte timestamp for writers too.Aldo Cortesi2015-05-311-0/+1
| | | |
| | * | Move version check to netlib, unit test it.Aldo Cortesi2015-05-312-0/+71
| | |/
| | * Adjust pep8 parameters, reformatAldo Cortesi2015-05-3016-179/+455
| | |
| | * Merge pull request #62 from Kriechi/h2-clientAldo Cortesi2015-05-308-55/+416
| | |\ | | | | | | | | H2 client
| | | * make tests aware of ALPN & OpenSSL 1.0.2 dependencyThomas Kriechbaumer2015-05-291-8/+13
| | | |
| | | * cleanup importsThomas Kriechbaumer2015-05-292-3/+0
| | | |
| | | * add HTTP/2-capable clientThomas Kriechbaumer2015-05-292-0/+85
| | | |
| | | * add ALPN support to TCP abstractionThomas Kriechbaumer2015-05-293-9/+47
| | | |
| | | * add generic frame parsing methodThomas Kriechbaumer2015-05-291-0/+17
| | | |
| | | * add hpack to encode and decode headersThomas Kriechbaumer2015-05-293-46/+167
| | | |