Update TODO. Add 'websockify' as protocol.

This commit is contained in:
Joel Martin 2011-04-26 09:16:03 -05:00
parent 2bb1252666
commit 65c1d8073c
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
- Support protocol version 07:
http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07
- Support multiple targets that are selected by the path line. Some
sort of wildcarding of ports too.
- wstelnet: support CSI L and CSI M
- create gevent version:

View File

@ -252,7 +252,7 @@ function init() {
function open(uri) {
init();
websocket = new WebSocket(uri);
websocket = new WebSocket(uri, 'websockify');
websocket.onmessage = recv_message;
websocket.onopen = function(e) {