aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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
| |
| * fix default argumentThomas Kriechbaumer2015-05-291-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 debuggingThomas Kriechbaumer2015-05-292-15/+108
| |
| * test Address __str__Thomas Kriechbaumer2015-05-291-0/+1
|/
* improve travis coding style checksThomas Kriechbaumer2015-05-293-2/+22
|
* Satisfy autobots.Aldo Cortesi2015-05-281-1/+2
|
* Merge branch 'Kriechi-cleanup'Aldo Cortesi2015-05-2832-361/+538
|\
| * add pep8 autoformat checks to travisThomas Kriechbaumer2015-05-273-4/+9
| |
| * cleanup code with autoflakeThomas Kriechbaumer2015-05-2710-28/+8
| | | | | | | | run the following command: $ autoflake -r -i --remove-all-unused-imports --remove-unused-variables .
| * cleanup code with autopep8Thomas Kriechbaumer2015-05-2727-332/+510
| | | | | | | | run the following command: $ autopep8 -i -r -a -a .
* | Merge pull request #59 from Kriechi/update-tls-defaultsAldo Cortesi2015-05-282-14/+32
|\ \ | |/ |/| update TLS defaults: signature hash and DH params
| * update TLS defaults: signature hash and DH paramsThomas Kriechbaumer2015-05-272-14/+32
|/ | | | | * SHA1 is deprecated (use SHA256) * increase RSA key to 2048 bits * increase DH params to 4096 bits (LogJam attack)
* Merge pull request #58 from Kriechi/update-opensslAldo Cortesi2015-05-272-10/+7
|\ | | | | Update openssl
| * remove outdated workaroundsThomas Kriechbaumer2015-05-271-8/+4
| |
| * bump pyOpenSSL and cryptography dependenciesThomas Kriechbaumer2015-05-271-2/+3
|/
* Merge pull request #56 from Kriechi/http2-framesAldo Cortesi2015-05-275-0/+742
|\ | | | | implement basic HTTP/2 frame classes
| * implement basic HTTP/2 frame classesThomas Kriechbaumer2015-05-265-0/+742
| |
* | Post release version bump.Aldo Cortesi2015-05-261-1/+1
|/
* improve displaying tcp addressesMaximilian Hils2015-05-181-1/+4
|
* release prep: bump versionAldo Cortesi2015-05-181-1/+1
|
* Zap outdated commentAldo Cortesi2015-05-161-3/+1
|
* Zap a left-over testAldo Cortesi2015-05-051-12/+0
|
* Add tcp.Reader.safe_read, use it in socks and websocketsAldo Cortesi2015-05-057-62/+80
| | | | | | safe_read is guaranteed to raise or return a byte string of the requested length. It's particularly useful for implementing binary protocols.
* websockets: more flexible masking interface.Aldo Cortesi2015-05-011-3/+8
|
* websockets: A progressive masker.Aldo Cortesi2015-05-012-14/+34
|
* websockets: more compact and legible human_readableAldo Cortesi2015-04-304-28/+55
|
* Add a tiny utility class for keeping bi-directional mappings.Aldo Cortesi2015-04-305-35/+91
| | | | Use it in websocket and socks.
* testing: http read_request corner caseAldo Cortesi2015-04-301-0/+5
|
* websockets: nicer frame constructionAldo Cortesi2015-04-242-15/+35
| | | | | | - Resolve unspecified values on instantiation - Add a check for masking key length - Smarter resolution for masking_key and mask values. Do the right thing unless told not to.