diff options
author | Joel Martin <jmartin@sentryds.com> | 2011-05-02 17:40:15 -0500 |
---|---|---|
committer | Joel Martin <jmartin@sentryds.com> | 2011-05-02 17:40:15 -0500 |
commit | 4084a2cb88ef540da65fabf919c5d2b3af797071 (patch) | |
tree | 9af9c29647a2686c4882ade4da1e5a5104eac64a /web_socket.js | |
parent | 20c16e64b46cb271374438140315cbc115c67501 (diff) | |
download | web-socket-js-4084a2cb88ef540da65fabf919c5d2b3af797071.tar.gz |
Implement HyBi-07 version of the protocol.
This is an initial implementation of
http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07
Limitations:
- This does not implement the binary frame type since the API for this
is still under discussion.
- The client to server XOR mask is 0, i.e. masking is not used.
Diffstat (limited to 'web_socket.js')
-rw-r--r-- | web_socket.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_socket.js b/web_socket.js index d080c6e..5f359d3 100644 --- a/web_socket.js +++ b/web_socket.js @@ -1,7 +1,7 @@ // Copyright: Hiroshi Ichikawa <http://gimite.net/en/> // License: New BSD License // Reference: http://dev.w3.org/html5/websockets/ -// Reference: http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol +// Reference: http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07 (function() { |