summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Martin <jmartin@sentryds.com>2011-05-02 17:40:15 -0500
committerJoel Martin <jmartin@sentryds.com>2011-05-02 17:40:15 -0500
commit4084a2cb88ef540da65fabf919c5d2b3af797071 (patch)
tree9af9c29647a2686c4882ade4da1e5a5104eac64a /README.md
parent20c16e64b46cb271374438140315cbc115c67501 (diff)
downloadweb-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 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index df0e0c3..28783d6 100644
--- a/README.md
+++ b/README.md
@@ -115,7 +115,7 @@ Note that it's technically possible that client sends arbitrary string as Cookie
### Proxy support
-[The WebSocket spec](http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol) specifies instructions for User Agents to support proxied connections by implementing the HTTP CONNECT method.
+[The WebSocket spec](http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-07) specifies instructions for User Agents to support proxied connections by implementing the HTTP CONNECT method.
The AS3 Socket class doesn't implement this mechanism, which renders it useless for the scenarios where the user trying to open a socket is behind a proxy.