File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This repository contains a barebones WebSocket server and client implementation
88written in 100% Java. The underlying classes are implemented using the Java
99` ServerSocketChannel ` and ` SocketChannel ` classes, which allows for a
1010non-blocking event-driven model (similar to the
11- [ WebSocket API] ( < http://dev.w3.org/html5/websockets/ > ) for web browsers).
11+ [ WebSocket API] ( http://dev.w3.org/html5/websockets/ ) for web browsers).
1212
1313Running the Example
1414-------------------
@@ -40,14 +40,14 @@ text box.
4040There's also a simple HTML file chat client ` chat.html ` , which can be opened
4141by any browser. If the browser natively supports the WebSocket API, then it's
4242implementation will be used, otherwise it will fall back to a
43- [ Flash-based WebSocket Implementation] ( < http://github.com/gimite/web-socket-js > ) .
43+ [ Flash-based WebSocket Implementation] ( http://github.com/gimite/web-socket-js ) .
4444
4545Writing your own WebSocket Server
4646---------------------------------
4747
4848The ` net.tootallnate.websocket.WebSocketServer ` abstract class implements the
4949server-side of the
50- [ WebSocket Protocol] ( < http://www.whatwg.org/specs/web-socket-protocol/ > ) .
50+ [ WebSocket Protocol] ( http://www.whatwg.org/specs/web-socket-protocol/ ) .
5151A WebSocket server by itself doesn't do anything except establish socket
5252connections though HTTP. After that it's up to ** your** subclass to add purpose.
5353
You can’t perform that action at this time.
0 commit comments