aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_http_websocket.erl
AgeCommit message (Expand)Author
2012-05-23Update version to 0.6.00.6.0Loïc Hoguin
2012-05-04Add a note about crypto websocket usage in the doc commentsLoïc Hoguin
2012-04-24use erlang:start_timer/3 instead of erlang:send_after/3 for handling timeoutsBob Ippolito
2012-04-06Merge branch 'websocket-fragments' of https://github.com/klaar/cowboyLoïc Hoguin
2012-04-05Add support for fragmented websocket messagesMagnus Klaar
2012-04-01Add chunked transfer encoding support and rework the body reading APILoïc Hoguin
2012-04-01Convert request to proplist when loggingMagnus Klaar
2012-03-12Rename inet:ip_port() to inet:port_number()Loïc Hoguin
2012-02-27Remove the redundant include/ from -include("http.hrl")Loïc Hoguin
2012-02-02Apply a trick to the erlang:hibernate calls to suppress dialyzer warningsLoïc Hoguin
2012-01-06Fix handler crashes handlingLoïc Hoguin
2011-12-22Add 'Upgrade' header parsingLoïc Hoguin
2011-12-22Websocket control frames payload length must be lower than 126 bytesLoïc Hoguin
2011-12-19Add meta/2 and meta/3 to cowboy_http_req to save useful protocol informationLoïc Hoguin
2011-12-10update /bits in binary expressions to /binaryMagnus Klaar
2011-12-08Allow HTTP protocol upgrades to use keepaliveLoïc Hoguin
2011-12-06Fix a crash in websocket_handshake/3 with hixie-76Loïc Hoguin
2011-11-01Merge branch 'chrome-15' of https://github.com/puzza007/cowboyLoïc Hoguin
2011-10-30update record spec for version 13Paul Oliver
2011-10-26Add 'Accept' header parsingLoïc Hoguin
2011-10-24Make sure the correct callback name is displayed in websocket errorsLoïc Hoguin
2011-10-24Accept Sec-WebSocket-Version: 13 header on Chrome 15 through 17Paul Oliver
2011-10-24We don't need to retrieve the Origin header for hybi-7+ websocket draftsLoïc Hoguin
2011-10-20Parse Connection header tokens in a case-insensitive mannerLoïc Hoguin
2011-10-20Add a cowboy_http_req:upgrade_reply/3 function and use it for websocketsLoïc Hoguin
2011-10-20"websocket" must be treated in a case insensitive manner for upgradesLoïc Hoguin
2011-10-20Make sure the hixie-76 websocket code works properly with proxiesLoïc Hoguin
2011-10-11Fix specs after erlang:hibernate/3 calls were addedLoïc Hoguin
2011-10-10Add {shutdown, Req} to websocket_init/3 to fail a websocket upgradeLoïc Hoguin
2011-10-06Merge branch 'hybi-framing-fix' of https://github.com/smarkets/cowboyLoïc Hoguin
2011-10-06Fix hixi76_location/5 when transport is tcp and port is 443Loïc Hoguin
2011-10-05Parse 'Connection' headers as a list of tokensLoïc Hoguin
2011-10-03Fix byte-by-byte Websocket handlingHunter Morris
2011-10-01Get rid of a binary construct in cowboy_http_websocketLoïc Hoguin
2011-09-26Fix handshake for when querystring is neededOri Bar
2011-09-22Add a test for websocket hibernate + timeout and fix this use caseLoïc Hoguin
2011-09-15Allow websocket handlers to hibernate from the websocket_init/3 functionLoïc Hoguin
2011-08-23Add WebSocket drafts 7, 8, 9 and 10 implementationLoïc Hoguin
2011-08-10Give the ListenerPid to the protocol on startupLoïc Hoguin
2011-07-19Separate message and packet handling for websocketsLoïc Hoguin
2011-07-07Call websocket_close/4 *after* throwing the errorLoïc Hoguin
2011-07-06Add documentation for the public interface.Loïc Hoguin
2011-06-27do not send ports 80 and 443 - browsers get madSteven Gravell
2011-06-06Add hibernate support for websockets.Loïc Hoguin
2011-06-06Compile the binary match pattern for websockets only once.Loïc Hoguin
2011-05-31Remove a binary warning from websocket_data by removing a byte_size call.Loïc Hoguin
2011-05-27Send a meaningful error to error_logger on websocket handler crashes.Loïc Hoguin
2011-05-25Refresh the type specifications.Loïc Hoguin
2011-05-05Switch the HTTP protocol to use binary packets instead of lists.Loïc Hoguin
2011-05-04Add cowboy_http_req:port/1.Loïc Hoguin