aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2011-10-05Skip deps when generating docsLoïc Hoguin
2011-10-05Parse 'Connection' headers as a list of tokensLoïc Hoguin
Replaces the 'Connection' interpretation in cowboy_http_protocol from raw value to the parsed value, looking for a single token matching close/keep-alive instead of the whole raw value (which could contain more than one token, for example with Firefox 6+ using websocket). Introduce the functions cowboy_http_req:parse_header/2 and /3 to semantically parse the header values and return a proper Erlang term.
2011-10-04Move a few binary string handling functions to cowboy_bstrLoïc Hoguin
2011-10-04Remove the connection information from the HTTP protocol stateLoïc Hoguin
Use the Req connection information instead.
2011-10-04Close connection on all errorsLoïc Hoguin
And use a proper cowboy_http_req:reply/4 call for the 204 response.
2011-10-04Small doc clarificationLoïc Hoguin
2011-10-04Do not send a 408 response if the Request-Line wasn't fully receivedLoïc Hoguin
The server should not send a response if there wasn't at least the beginning of a request sent (the Request-Line).
2011-10-01Get rid of a binary construct in cowboy_http_websocketLoïc Hoguin
Thanks to @nivertech for pointing it out in ticket #61.
2011-10-01Get rid of a binary construct in cowboy_http_reqLoïc Hoguin
Thanks to @klaar for pointing it out in ticket #59.
2011-10-01Rename the type cowboy_dispatcher:path_tokens/0 to :tokens/0Loïc Hoguin
2011-10-01Merge branch 'path-split-doc' of https://github.com/klaar/cowboyLoïc Hoguin
2011-10-01Merge branch 'master' of https://github.com/hakvroot/cowboyLoïc Hoguin
2011-09-30Add cowboy_protocol behaviourMichiel Hakvoort
2011-09-29add note to split_path/1 and path/1 on escaped /Magnus Klaar
2011-09-28Improve the error message for HTTP handlersLoïc Hoguin
Making it look more like the websocket handler error messages.
2011-09-28Merge remote-tracking branch 'smarkets/cacertfile'Loïc Hoguin
2011-09-28add cacertfile configurationSteven Gravell
2011-09-26Merge remote-tracking branch 'nivertech/master'Loï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
The issue was that we were calling erlang:hibernate before a receive .. after .. end call. Erlang hibernates the process before reaching the receive instruction and we therefore couldn't enter the after clause when hibernating. This is now fixed by using erlang:send_after instead and receiving that message instead of using an after clause.
2011-09-15Allow websocket handlers to hibernate from the websocket_init/3 functionLoïc Hoguin
Also improve the documentation about hibernate.
2011-09-14'Host' header is optional in HTTP/1.0Loïc Hoguin
Krishnamurthy, Kristol, Mogul: "Key Differences between HTTP/1.0 and HTTP/1.1", "Internet address conservation". http://www8.org/w8-papers/5c-protocols/key/key.html Fixes issue #35 reported by Alex Kropivny.
2011-09-13Reset the max number of empty lines between keepalive requestsLoïc Hoguin
Fixes issue #47.
2011-09-13Improve the Cowboy definition in the READMELoïc Hoguin
2011-09-06Merge pull request #46 from tillitech/masterLoïc Hoguin
Fix the handling of HEAD requests
2011-09-06Fix the handling of the HEAD requestsAli Sabil
Responses to the HEAD requests used to include an response body.
2011-09-05Update version to 0.3.0 to continue with developmentLoïc Hoguin
2011-09-05Update version to 0.2.00.2.0Loïc Hoguin
2011-09-05Update AUTHORS fileLoïc Hoguin
2011-09-05Tweak the .travis.yml fileLoïc Hoguin
We want to run 'make tests' and not that rebar command. Also remove R14B as quoted doesn't work with it.
2011-09-05Add .travis.yml fileLoïc Hoguin
2011-08-23Add WebSocket drafts 7, 8, 9 and 10 implementationLoïc Hoguin
The implementation is only partial for now but should work for all browsers implementing it.
2011-08-23Ensure header names are handled in a case insensitive mannerLoïc Hoguin
To this end we are formatting the header names just like OTP does except we do it for names of up to 32 characters, as there are widely used header names of more than 20 characters, the limit that OTP follows currently. An example of such header name would be Sec-Websocket-Version. The formatting itself is fairly simple: an uppercase character at the start and after dashes, everything else lowercase.
2011-08-11Use cowboy_clock types in cowboy_cookies instead of calendarLoïc Hoguin
Until calendar exports them at least.
2011-08-11Add Transport:setopts/2 note for writing protocolsLoïc Hoguin
2011-08-10Give the ListenerPid to the protocol on startupLoïc Hoguin
Also sends a message 'shoot' that can be received by the protocol to make sure Cowboy has had enough time to fully initialize the socket. This message should be received before any socket-related operations are performed. WebSocket request connections are now moved from the pool 'default' to the pool 'websocket', meaning we can have a lot of running WebSockets despite having a low 'max_connections' setting.
2011-08-10Introduce cowboy_listener for managing a listenerLoïc Hoguin
Currently only supports limiting the maximum number of connections by managing connection pools.
2011-07-26Fix cookie tests and specsLoïc Hoguin
2011-07-26Small cosmetic changes and doc update to the cookie patchLoïc Hoguin
2011-07-26Fail early in cookie-related API functionsTom Burdick
2011-07-26Implement cookies in cowboy_http_reqTom Burdick
2011-07-26Add cowboy_cookies for cookie creation and parsingTom Burdick
Based on Mochi Media, Inc.'s work in Mochiweb. Conflicts: rebar.config
2011-07-26Update quoted to 1.0.3 to fix outstanding issuesLoïc Hoguin
Magnus Klaar updated the PropEr tests and it should be fine now.
2011-07-26Add a PropEr test for cowboy_dispatcher:split_host/1Loïc Hoguin
Mostly thanks to Magnus Klaar as it took me a while to figure out how PropEr tests had to be written.
2011-07-20URL decode pathsLoïc Hoguin
This fixes issue #33.
2011-07-20URL decode query stringsLoïc Hoguin
Should be good for both GET and POST query strings. This adds https://github.com/klaar/quoted.erl as a dependency. Props to klaar for this code.
2011-07-19Separate message and packet handling for websocketsLoï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-07-18Fail fast when a wrong type is given to API functionsLoïc Hoguin
Idea given by bfrog, fixes issue #34.
2011-07-07Call websocket_close/4 *after* throwing the errorLoïc Hoguin
This ensures that an error thrown in handler_terminate/4 will be shown after the error from handler_call/6, in the expected order. As we already call WebSocketHandler:terminate/3, this should fix issue #23.
2011-07-07Call Handler:terminate/2 even on error in Handler:handle/2Loïc Hoguin
This ensures we can cleanup what we did in Handler:init/3.