summaryrefslogtreecommitdiff
path: root/websockify/websocket.py
Commit message (Expand)AuthorAgeFilesLines
* Make websocket's API more intuitiveLinn Mattsson2022-11-081-15/+27
* Use frombytes() instead of fromstring()Pierre Ossman2020-12-141-4/+4
* Remove support for older PythonPierre Ossman2020-12-141-57/+23
* Require same arguments on insufficient socket spacePierre Ossman2020-09-301-13/+70
* Add type checking when sendning dataPierre Ossman2020-09-301-0/+9
* Allow sending empty messagesPierre Ossman2020-09-301-2/+4
* Fix bad reset of fragmented framePierre Ossman2020-08-211-1/+1
* fix handling of code: invalid unpacking, undefined variable in error path, mi...totaam2019-02-231-3/+3
* Explicitly deny text messagesPierre Ossman2018-10-231-0/+2
* Merge branch 'empty-message' of https://github.com/andersk/websockifyPierre Ossman2017-11-131-25/+19
|\
| * Clarify that WebSocket.{recv,recvmsg} may return empty messagesAnders Kaseorg2017-11-131-8/+10
| * Do not confuse an empty message with a closed connectionAnders Kaseorg2017-11-101-22/+14
* | Do not use base except: clausesAnders Kaseorg2017-11-101-3/+5
|/
* Handle ping/pong without payload properlyPierre Ossman2017-04-191-2/+2
* typo in ping() and pong()Felix J. Ogris2017-04-121-2/+2
* Force choice of sub-protocolPierre Ossman2017-02-081-0/+12
* Separate out raw WebSocket protocol handlingPierre Ossman2017-02-011-920/+689
* Remove Base64 supportPierre Ossman2017-02-011-40/+8
* Assume Python 2.6+ modules are always presentPierre Ossman2017-02-011-51/+16
* Close connection after Websocket handshakePierre Ossman2017-01-191-0/+4
* TCP_KEEPCNT doesn't exist in non-linuxThomas Goirand2016-10-101-2/+5
* Make websockify respect SIGTERMAbhishek Kekane2016-02-181-0/+8
* Remove additional signal calls in websockify that causes novnc to hang.Aliasgar Ginwala2016-01-081-4/+9
* Fix log files when daemonizingMiguel Xavier Penha Neto2015-12-021-2/+20
* Add support for log filesMiguel Xavier Penha Neto2015-12-011-0/+3
* Merge pull request #194 from kanaka/feature/http-auth-pluginsSolly2015-08-281-2/+10
|\
| * Rework Auth Plugins to Support HTTP Authfeature/http-auth-pluginsSolly Ross2015-08-251-2/+10
* | Avoid UnboundLocalError for excArata Notsu2015-08-271-0/+1
|/
* Introduce strict modeSolly Ross2015-05-131-3/+10
* Update Tests and Test PluginsSolly Ross2015-05-131-1/+1
* Restore functionaltiy to file_only.Solly Ross2015-05-131-1/+5
* Add ping heartbeat optionAric Stewart2015-04-141-0/+9
* Add option to turn on auto-pongAric Stewart2015-04-131-1/+13
* BUGFIX: Websocket frame corruption on big-endian #150Rafael Folco2015-04-071-8/+12
* python3 compatibility fixesRadek Podgorny2014-10-021-1/+1
* Fix typo in reaping zombies message.Matthew M. Boedicker2014-05-201-1/+1
* remove some trailing whitespacessamhed2014-04-141-13/+13
* Avoid using the %-operator, URL-escaped strings can contain extra %'s which c...samhed2014-03-181-6/+6
* Minor whitespace and layout tweaks, to reduce diff againstPeter Åstrand (astrand)2013-12-171-3/+4
* Merge remote branch 'upstream/master', after #110 was merged.Peter Åstrand (astrand)2013-12-161-1/+1
|\
| * Rename new_client to new_websocket_client, in order to have a betterPeter Åstrand (astrand)2013-11-281-5/+5
| * Rename self.client to self.request, in preparation for merging pullPeter Åstrand (astrand)2013-11-281-8/+8
* | Follow up on 131f9ea645ac6f00d98743a420d168033f99063a: Proper loggingPeter Åstrand (astrand)2013-11-281-3/+7
* | Merge commit 'a04edfe80f54b44df5a3579f71710560c6b7b4fc'Peter Åstrand (astrand)2013-11-281-7/+8
|\ \ | |/
| * Added temp dir for unit test data and cleanupEdward Hope-Morley2013-11-141-7/+8
* | Merge commit 'a47be21f9fa69ddf8d888ff9e3c75cdfc9e31c00'Peter Åstrand (astrand)2013-11-281-0/+1
|\ \ | |/
| * Added unit tests for websocket and websocketproxyEdward Hope-Morley2013-10-291-0/+1
* | Merge commit 'c3acdc2e38f871e28ffda1847b4338c4b02296b8'Peter Åstrand (astrand)2013-11-281-4/+30
|\ \ | |/
| * Merge pull request #93 from dosaboy/topic/set-keepalive-optionsJoel Martin2013-10-291-4/+31
| |\
| | * Adds optional TCP_KEEPALIVE to WebSocketServerEdward Hope-Morley2013-10-161-5/+32