Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | add more tests | Thomas Kriechbaumer | 2015-06-12 | 1 | -4/+4 | |
| | | ||||||
* | | http2: add response creation | Thomas Kriechbaumer | 2015-06-12 | 1 | -15/+41 | |
| | | ||||||
* | | http2: general improvements | Thomas Kriechbaumer | 2015-06-12 | 1 | -20/+43 | |
| | | ||||||
* | | improve ALPN integration | Thomas Kriechbaumer | 2015-06-11 | 1 | -8/+15 | |
|/ | ||||||
* | fix coding style | Thomas Kriechbaumer | 2015-06-08 | 1 | -1/+1 | |
| | ||||||
* | http2: add warning if raw data looks like HTTP/1 | Thomas Kriechbaumer | 2015-06-08 | 2 | -1/+5 | |
| | ||||||
* | fix non-ALPN supported OpenSSL-related tests | Thomas Kriechbaumer | 2015-06-08 | 1 | -1/+4 | |
| | ||||||
* | improve ALPN support on travis | Thomas Kriechbaumer | 2015-06-08 | 1 | -8/+11 | |
| | ||||||
* | fix coding style | Thomas Kriechbaumer | 2015-06-08 | 1 | -2/+4 | |
| | ||||||
* | http2: ditch the logging for now | Aldo Cortesi | 2015-06-06 | 2 | -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 dependencies | Aldo Cortesi | 2015-06-06 | 3 | -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-client | Aldo Cortesi | 2015-06-06 | 5 | -161/+308 | |
|\ | | | | | HTTP/2 protocol definition | |||||
| * | use open instead of file | Thomas Kriechbaumer | 2015-06-05 | 1 | -2/+2 | |
| | | ||||||
| * | http2: add protocol tests | Thomas Kriechbaumer | 2015-06-05 | 2 | -13/+14 | |
| | | ||||||
| * | http2: rename module and refactor as strategy | Thomas Kriechbaumer | 2015-06-05 | 2 | -7/+12 | |
| | | ||||||
| * | http2: add logging and error handling | Thomas Kriechbaumer | 2015-06-05 | 2 | -14/+30 | |
| | | ||||||
| * | http2: change header_block_fragment handling | Thomas Kriechbaumer | 2015-06-05 | 1 | -45/+20 | |
| | | ||||||
| * | http2: add basic protocol handling | Thomas Kriechbaumer | 2015-06-05 | 3 | -97/+211 | |
| | | ||||||
| * | http2: introduce state for connection objects | Thomas Kriechbaumer | 2015-06-05 | 1 | -39/+63 | |
| | | ||||||
| * | http2: fix default settings | Thomas Kriechbaumer | 2015-06-05 | 1 | -2/+2 | |
| | | ||||||
| * | simplify default ssl params for test servers | Thomas Kriechbaumer | 2015-06-05 | 1 | -9/+21 | |
| | | ||||||
* | | repr for websocket frames | Aldo Cortesi | 2015-06-05 | 1 | -0/+3 | |
| | | ||||||
* | | Revert "tcp: clear_log to clear socket logs" | Aldo Cortesi | 2015-06-05 | 1 | -3/+0 | |
| | | | | | | | | | | | | start_log also clears the log, which is good enough. This reverts commit 4ca62e0d9bd09aa286cde9bafceff7204304d00c. | |||||
* | | tcp: clear_log to clear socket logs | Aldo Cortesi | 2015-06-05 | 1 | -0/+3 | |
|/ | ||||||
* | Bump version | Aldo Cortesi | 2015-06-04 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #61 from Kriechi/distribute-cffi | Maximilian Hils | 2015-05-31 | 1 | -2/+2 | |
|\ | | | | | distribute cffi correctly | |||||
| * | distribute cffi correctly | Thomas Kriechbaumer | 2015-05-30 | 1 | -2/+2 | |
| | | ||||||
* | | websockets: nicer human readable | Aldo Cortesi | 2015-05-31 | 1 | -3/+5 | |
| | | ||||||
* | | When we see an incomplete read with 0 bytes, it's a disconnect | Aldo Cortesi | 2015-05-31 | 1 | -3/+6 | |
| | | | | | | | | Partially fixes mitmproxy/mitmproxy:#593 | |||||
* | | Save first byte timestamp for writers too. | Aldo Cortesi | 2015-05-31 | 1 | -0/+1 | |
| | | ||||||
* | | Move version check to netlib, unit test it. | Aldo Cortesi | 2015-05-31 | 1 | -0/+49 | |
|/ | ||||||
* | Adjust pep8 parameters, reformat | Aldo Cortesi | 2015-05-30 | 8 | -117/+236 | |
| | ||||||
* | cleanup imports | Thomas Kriechbaumer | 2015-05-29 | 1 | -1/+0 | |
| | ||||||
* | add HTTP/2-capable client | Thomas Kriechbaumer | 2015-05-29 | 1 | -0/+65 | |
| | ||||||
* | add ALPN support to TCP abstraction | Thomas Kriechbaumer | 2015-05-29 | 2 | -9/+29 | |
| | ||||||
* | add generic frame parsing method | Thomas Kriechbaumer | 2015-05-29 | 1 | -0/+17 | |
| | ||||||
* | add hpack to encode and decode headers | Thomas Kriechbaumer | 2015-05-29 | 1 | -9/+32 | |
| | ||||||
* | fix default argument | Thomas Kriechbaumer | 2015-05-29 | 1 | -1/+5 | |
| | | | | | Python evaluates default args during method definition. So you get the same dict each time you call this method. Therefore the dict is the SAME actual object each time. | |||||
* | add human_readable() to each frame for debugging | Thomas Kriechbaumer | 2015-05-29 | 1 | -1/+74 | |
| | ||||||
* | Satisfy autobots. | Aldo Cortesi | 2015-05-28 | 1 | -1/+2 | |
| | ||||||
* | Merge branch 'Kriechi-cleanup' | Aldo Cortesi | 2015-05-28 | 14 | -242/+322 | |
|\ | ||||||
| * | cleanup code with autoflake | Thomas Kriechbaumer | 2015-05-27 | 5 | -14/+1 | |
| | | | | | | | | run the following command: $ autoflake -r -i --remove-all-unused-imports --remove-unused-variables . | |||||
| * | cleanup code with autopep8 | Thomas Kriechbaumer | 2015-05-27 | 14 | -229/+308 | |
| | | | | | | | | run the following command: $ autopep8 -i -r -a -a . | |||||
* | | update TLS defaults: signature hash and DH params | Thomas Kriechbaumer | 2015-05-27 | 1 | -11/+21 | |
|/ | | | | | * SHA1 is deprecated (use SHA256) * increase RSA key to 2048 bits * increase DH params to 4096 bits (LogJam attack) | |||||
* | remove outdated workarounds | Thomas Kriechbaumer | 2015-05-27 | 1 | -8/+4 | |
| | ||||||
* | Merge pull request #56 from Kriechi/http2-frames | Aldo Cortesi | 2015-05-27 | 3 | -0/+401 | |
|\ | | | | | implement basic HTTP/2 frame classes | |||||
| * | implement basic HTTP/2 frame classes | Thomas Kriechbaumer | 2015-05-26 | 3 | -0/+401 | |
| | | ||||||
* | | Post release version bump. | Aldo Cortesi | 2015-05-26 | 1 | -1/+1 | |
|/ | ||||||
* | improve displaying tcp addresses | Maximilian Hils | 2015-05-18 | 1 | -1/+4 | |
| | ||||||
* | release prep: bump version | Aldo Cortesi | 2015-05-18 | 1 | -1/+1 | |
| |