implement the hybi-10 protocol
Newest Chromium uses the hybi-10 version of the WebSocket protocol (http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-10). See http://code.google.com/p/chromium/issues/detail?id=64470 for details.
Both the handshake and the payload format have changed and currently txWebSocket does not work with Chromium.
I'm working on implementing both tha handshake and the new frame format and will create a pull request as soon as I have it done.
A first version is available at https://github.com/wulczer/txWebSocket/tree/hybi-10
It works with Chromium 15.0.839.0, but I haven't tested it beyond a few simple operations. I want to add support for fragmentation and I need to write unit tests for the new wire protocol decoder; once that's done I'll open a pull request.
Pull request issued, https://github.com/rlotun/txWebSocket/pull/13