diff options
| author | Aldo Cortesi <aldo@corte.si> | 2015-08-01 11:38:12 +1200 |
|---|---|---|
| committer | Aldo Cortesi <aldo@corte.si> | 2015-08-01 11:38:12 +1200 |
| commit | 7432ad6af7a69291bb5b1f63d1b279833a4231dd (patch) | |
| tree | e21889f43750cb979424dcd928510c7bd94efacb /libpathod/language/http.py | |
| parent | d301f55bb7df5d4f8156153a36fd600c04b77115 (diff) | |
| parent | 31dbd2fc7595d709e41523f3586dfdc02feb07dd (diff) | |
| download | mitmproxy-7432ad6af7a69291bb5b1f63d1b279833a4231dd.tar.gz mitmproxy-7432ad6af7a69291bb5b1f63d1b279833a4231dd.tar.bz2 mitmproxy-7432ad6af7a69291bb5b1f63d1b279833a4231dd.zip | |
Merge pull request #32 from Kriechi/http2-wip
[WIP] Protocol Refactoring for HTTP/2
Diffstat (limited to 'libpathod/language/http.py')
| -rw-r--r-- | libpathod/language/http.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpathod/language/http.py b/libpathod/language/http.py index 380a5d64..2e8d2af3 100644 --- a/libpathod/language/http.py +++ b/libpathod/language/http.py @@ -7,6 +7,9 @@ import netlib.websockets from netlib.http import status_codes, user_agents from . import base, exceptions, actions, message +# TODO: use netlib.semantics.protocol assemble method, +# instead of duplicating the HTTP on-the-wire representation here. +# see http2 language for an example class WS(base.CaselessLiteral): TOK = "ws" |
