Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | PEP8 style compliance fixes | engn33r | 2021-05-04 | 1 | -1/+1 |
| | |||||
* | Fix #526 by reverting invalid BSD license migration in commit e94ed9e to ↵ | engn33r | 2021-02-22 | 1 | -1/+24 |
| | | | | return to LGPL2.1 | ||||
* | Merge pull request #576 from Mottl/compress | liris | 2019-12-25 | 1 | -3/+19 |
|\ | | | | | Show compressed text messages in wsdump.py | ||||
| * | Simplify zlib.decompress call | Dmitry Mottl | 2019-09-25 | 1 | -5/+1 |
| | | |||||
| * | Show compressed text messages in wsdump.py | Dmitry Mottl | 2019-09-24 | 1 | -3/+23 |
| | | |||||
* | | wsdump: Fix --headers option | Ting-Wei Lan | 2019-12-04 | 1 | -1/+1 |
|/ | | | | | | | | | | | | Since https://github.com/websocket-client/websocket-client/pull/506 changes the way that options['header'] is used, it breaks --headers option of wsdump command because wsdump command uses a map object instead of a list here, which can only be used once. Therefore, after the first use with 'not in' operator, it becomes empty and no headers specified by the user are sent. To fix it, simply convert the map object into a list, so it can be use multiple times. | ||||
* | Fix #315: import ssl | Edoardo Negri | 2017-04-13 | 1 | -1/+2 |
| | |||||
* | Pass headers for websocket handshake | Andrey Oleynik | 2016-10-05 | 1 | -0/+4 |
| | |||||
* | wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise imports | Allan Lewis | 2016-04-27 | 1 | -2/+5 |
| | | | | | | | | | | | | | | Previously, because of the multiple instances of `from foo import *`, names were imported from modules that had themselves imported them, instead of from the place of definition. This commit therefore does the following: - Declares `__all__` in every module that imports anything, so that `from foo import *` is sane. - Sorts the imports based on conventions, similar to the output of `isort`. - Places all conditional imports after unconditional imports, except where that isn't valid. - Imports local names from the modules where they are defined, except when importing the package itself. | ||||
* | wsdump, websocket.*: [PEP 8] Use conventional vertical spacing | Allan Lewis | 2016-04-27 | 1 | -1/+8 |
| | |||||
* | wsdump, examples, setup, _abnf, _http, _utils: [PEP 8] Fix spacing | Allan Lewis | 2016-04-27 | 1 | -2/+3 |
| | |||||
* | wsdump: Only catch relevant exceptions | Allan Lewis | 2016-04-27 | 1 | -1/+1 |
| | |||||
* | wsdump, _core, _url, _utils: Remove redundant parentheses | Allan Lewis | 2016-04-27 | 1 | -9/+9 |
| | |||||
* | wsdump, _abnf, _http: Compare to `None` using `in` | Allan Lewis | 2016-04-27 | 1 | -1/+1 |
| | |||||
* | Merge branch 'master' of https://github.com/liris/websocket-client | liris | 2016-01-04 | 1 | -1/+1 |
|\ | |||||
| * | fix typos | Jakub Wilk | 2016-01-03 | 1 | -1/+1 |
| | | |||||
* | | Prints timings in console | Andreas Holen | 2015-11-05 | 1 | -1/+7 |
|/ | |||||
* | adding proxy support to wsdump.py | nnam | 2015-07-15 | 1 | -0/+7 |
| | |||||
* | Merge pull request #186 from sim6/raw-mode | liris | 2015-05-18 | 1 | -15/+31 |
|\ | | | | | Add raw mode to wsdump.py | ||||
| * | add raw mode to wsdump.py | Simó Albert i Beltran | 2015-05-14 | 1 | -12/+28 |
| | | |||||
| * | console decoration of wsdump.py inside InteractiveConsole | Simó Albert i Beltran | 2015-05-14 | 1 | -3/+3 |
| | | |||||
| * | wsdump.py writes empty string to console | Simó Albert i Beltran | 2015-05-14 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #185 from sim6/fix-py3 | liris | 2015-05-18 | 1 | -0/+2 |
|\ \ | | | | | | | fix output of wsdump.py with python3 | ||||
| * | | fix output of wsdump.py with python3 | Simó Albert i Beltran | 2015-05-15 | 1 | -0/+2 |
| |/ | |||||
* | | -m fixed #183 | liris | 2015-05-15 | 1 | -1/+3 |
|/ | |||||
* | fix regression of f6af085e1a393a7ef8b7d194330b46e16ab217e2 | Simó Albert i Beltran | 2015-05-13 | 1 | -1/+0 |
| | |||||
* | fixed #183 | liris | 2015-05-13 | 1 | -1/+13 |
| | |||||
* | Reworked how new options are passed. | Jose Vasconcellos | 2015-03-01 | 1 | -4/+5 |
| | |||||
* | Changes to wsdump.py. Add command line options and handle closed socket. | Jose Vasconcellos | 2015-02-25 | 1 | -2/+21 |
| | | | | | | | | | | | Additional comamnd line options: * -s proto1 proto2 - set one or more subprotocols * -o origin - set origin * -t "initial text" - allow some text be set from command line Handle receiving from a closed socket. Reply to ping with a pong containing the ping packet data. | ||||
* | Enable turning off SSL verification in wsdump.py | Joakim Söderberg | 2014-10-13 | 1 | -1/+6 |
| | |||||
* | Py3 fixes for wsdump. | Ralph Bean | 2014-04-14 | 1 | -4/+9 |
| | |||||
* | - fixed #42 | liris | 2013-08-02 | 1 | -1/+1 |
| | |||||
* | - fixed #42 | liris | 2013-07-30 | 1 | -0/+1 |
| | |||||
* | -v trace while connecting. | INADA Naoki | 2013-05-01 | 1 | -2/+2 |
| | |||||
* | prepare for py3 | liris | 2013-02-19 | 1 | -4/+3 |
| | |||||
* | - docuemnt for wsdump.py | liris | 2012-02-29 | 1 | -0/+0 |
| | |||||
* | - wsdump support verbose mode. | liris | 2012-02-29 | 1 | -4/+25 |
| | | | | | - show network raw data. - show opcodes | ||||
* | - websocket simple test tool. | liris | 2012-02-28 | 1 | -0/+90 |