summaryrefslogtreecommitdiff
path: root/bin/wsdump.py
Commit message (Collapse)AuthorAgeFilesLines
* PEP8 style compliance fixesengn33r2021-05-041-1/+1
|
* Fix #526 by reverting invalid BSD license migration in commit e94ed9e to ↵engn33r2021-02-221-1/+24
| | | | return to LGPL2.1
* Merge pull request #576 from Mottl/compressliris2019-12-251-3/+19
|\ | | | | Show compressed text messages in wsdump.py
| * Simplify zlib.decompress callDmitry Mottl2019-09-251-5/+1
| |
| * Show compressed text messages in wsdump.pyDmitry Mottl2019-09-241-3/+23
| |
* | wsdump: Fix --headers optionTing-Wei Lan2019-12-041-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 sslEdoardo Negri2017-04-131-1/+2
|
* Pass headers for websocket handshakeAndrey Oleynik2016-10-051-0/+4
|
* wsdump, test_fuzzingclient, websocket.*, test_websocket: Organise importsAllan Lewis2016-04-271-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 spacingAllan Lewis2016-04-271-1/+8
|
* wsdump, examples, setup, _abnf, _http, _utils: [PEP 8] Fix spacingAllan Lewis2016-04-271-2/+3
|
* wsdump: Only catch relevant exceptionsAllan Lewis2016-04-271-1/+1
|
* wsdump, _core, _url, _utils: Remove redundant parenthesesAllan Lewis2016-04-271-9/+9
|
* wsdump, _abnf, _http: Compare to `None` using `in`Allan Lewis2016-04-271-1/+1
|
* Merge branch 'master' of https://github.com/liris/websocket-clientliris2016-01-041-1/+1
|\
| * fix typosJakub Wilk2016-01-031-1/+1
| |
* | Prints timings in consoleAndreas Holen2015-11-051-1/+7
|/
* adding proxy support to wsdump.pynnam2015-07-151-0/+7
|
* Merge pull request #186 from sim6/raw-modeliris2015-05-181-15/+31
|\ | | | | Add raw mode to wsdump.py
| * add raw mode to wsdump.pySimó Albert i Beltran2015-05-141-12/+28
| |
| * console decoration of wsdump.py inside InteractiveConsoleSimó Albert i Beltran2015-05-141-3/+3
| |
| * wsdump.py writes empty string to consoleSimó Albert i Beltran2015-05-141-1/+1
| |
* | Merge pull request #185 from sim6/fix-py3liris2015-05-181-0/+2
|\ \ | | | | | | fix output of wsdump.py with python3
| * | fix output of wsdump.py with python3Simó Albert i Beltran2015-05-151-0/+2
| |/
* | -m fixed #183liris2015-05-151-1/+3
|/
* fix regression of f6af085e1a393a7ef8b7d194330b46e16ab217e2Simó Albert i Beltran2015-05-131-1/+0
|
* fixed #183liris2015-05-131-1/+13
|
* Reworked how new options are passed.Jose Vasconcellos2015-03-011-4/+5
|
* Changes to wsdump.py. Add command line options and handle closed socket.Jose Vasconcellos2015-02-251-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.pyJoakim Söderberg2014-10-131-1/+6
|
* Py3 fixes for wsdump.Ralph Bean2014-04-141-4/+9
|
* - fixed #42liris2013-08-021-1/+1
|
* - fixed #42liris2013-07-301-0/+1
|
* -v trace while connecting.INADA Naoki2013-05-011-2/+2
|
* prepare for py3liris2013-02-191-4/+3
|
* - docuemnt for wsdump.pyliris2012-02-291-0/+0
|
* - wsdump support verbose mode.liris2012-02-291-4/+25
| | | | | - show network raw data. - show opcodes
* - websocket simple test tool.liris2012-02-281-0/+90