Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-27 | Rename cowboy_http_websocket to cowboy_websocket | Loïc Hoguin | |
2012-08-27 | Rename cowboy_http_req to cowboy_req | Loïc Hoguin | |
2012-08-27 | Update behaviours for R15B+ | Loïc Hoguin | |
This effectively drops the R14B compatibility. The cowboy_req:req() type will be introduced in a future commit. It refers to the #http_req{} record. | |||
2011-12-22 | Add ct tests for binary websocket frames | Loïc Hoguin | |
2011-10-06 | Fix a crash in websocket_handshake when cowboy_http_req:compact/1 is used | Loïc Hoguin | |
Also add a call to compact/1 in the websocket test handler so we may catch bugs related to it faster later on. | |||
2011-08-23 | Add WebSocket drafts 7, 8, 9 and 10 implementation | Loïc Hoguin | |
The implementation is only partial for now but should work for all browsers implementing it. | |||
2011-07-19 | Separate message and packet handling for websockets | Loïc Hoguin | |
Improves the readability of websocket handler code by having two functions: websocket_handle/3 handles the packets received from the socket, removing the tuple construct that was otherwise needed, so only websocket_handle(Data, Req, State) is needed now; websocket_info/3 handles the messages that the websocket handler process received, as websocket_info(Info, Req, State). Both functions return values are handled identically by Cowboy so nothing changes on that end. | |||
2011-04-14 | Initial draft-hixie-thewebsocketprotocol-76 support. | Loïc Hoguin | |