aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_websocket_handler.erl
AgeCommit message (Collapse)Author
2014-03-26Remove outdated comments, all edoc, plus a few minor tweaksLoïc Hoguin
2014-02-06Update copyright yearsLoïc Hoguin
2013-02-13Update websocket handler callback specsAndrew Majorov
There are some additional terminate reasons exist which are not mentioned in the specs.
2013-01-22Fix cowboy_websocket_handler callback specLoïc Hoguin
2013-01-04Hello 2013Loïc Hoguin
2012-12-02Add more frame types available in websocket repliesLoïc Hoguin
We can now reply empty close, ping and pong frames, or close frames with a payload. This means that we can send a frame and then close the connection in a single operation. If a close packet is sent, the connection is closed immediately, even if there was frames that remained to be sent. Cowboy will silently drop any extra frames in the list given as a reply.
2012-11-28Update the cowboy_websocket_handler specsLoïc Hoguin
We can send many payloads at once.
2012-08-27Update 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.