File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 11Java WebSockets
22===============
33
4- ### Note: This lib currently only supports the older draft 75 and draft 76.
5- ### Pull requests for the latests drafts would be more than accepted!
6-
74This repository contains a barebones WebSocket server and client implementation
85written in 100% Java. The underlying classes are implemented using the Java
96` ServerSocketChannel ` and ` SocketChannel ` classes, which allows for a
107non-blocking event-driven model (similar to the
118[ WebSocket API] ( http://dev.w3.org/html5/websockets/ ) for web browsers).
129
10+ Implemented WebSocket protocol versions are:
11+
12+ * [ Hixie 75] ( http://tools.ietf.org/id/draft-hixie-thewebsocketprotocol-75.txt )
13+ * [ Hixie 76] ( http://tools.ietf.org/id/draft-hixie-thewebsocketprotocol-76.txt )
14+ * [ Hybi 10] ( http://tools.ietf.org/id/draft-ietf-hybi-thewebsocketprotocol-10.txt )
15+
1316Running the Example
1417-------------------
1518
You can’t perform that action at this time.
0 commit comments