aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-06-11Add HTTP/2 support preview2.0.0-pre.2Loïc Hoguin
This commit is not only an early preview of HTTP/2, it is an early preview of the new Cowboy architecture that will be presented tomorrow in my talk. If you have found it before the talk, great! It's not complete so you better go watch the talk anyway.
2015-05-07Exit with exit/1 on handler exception and include class in reasonJames Fish
2015-05-06Use the most recent state on error in cowboy_restLoïc Hoguin
2015-05-06Fix a compile error introduced in previous commitLoïc Hoguin
2015-05-06Dialyzer fixes in cowboy_clockLoïc Hoguin
This is what I get for merging blindly!
2015-05-06Add an index.html that is also served statically as the default for /David N. Welton
2015-05-06Merge branch 'patch-2' of https://github.com/egobrain/cowboyLoïc Hoguin
2015-05-06added a comment for non-obvious erlang:cancel_timerAlex Kovalev
2015-05-06fixed cowboy_clock inbox overflow if system clock was changedAlex Kovalev
2015-05-06Update Cowlib to 1.3.0Juan Puig
2015-05-05Add rfc7230 test suite and update others to recent GunLoïc Hoguin
This is a large commit. The rfc7230 test suite adds many tests from the RFC7230 document. Gun has been updated quite a bit recently, which broke the Cowboy suites. This is now fixed with this commit. A new hook onfirstrequest has been added. It was very useful during debugging of the test suites. The initial process code has changed a little; more changes are expected with the switch to maps for options.
2015-03-06Update Cowlib to 1.2.0; adds Websocket permessage-deflateLoïc Hoguin
The Websocket text frames should also be less resource intensive to validate now, with a binary concatenation avoided.
2015-02-17Fix reply/4 specYakov
There is wrong -spec of reply/4 function 3rd parametr type must be same as [#http_req spec](https://github.com/ninenines/cowboy/blob/master/src/cowboy_req.erl#L140)
2015-02-16Do not send empty chunksLoïc Hoguin
User code may sometimes send an empty value which gets understood by the client as being the end of the stream while this was not intended. Ignoring empty values allow making sure the stream isn't ended by mistake.
2015-02-16Add +warn_untyped_record to the build optionsLoïc Hoguin
2015-02-16Merge branch 'add_spdy_record_field_type' of https://github.com/sile/cowboyLoïc Hoguin
2015-02-16Merge branch 'master' of https://github.com/sstrigler/cowboyLoïc Hoguin
2015-02-16Fix cookie exampleLoïc Hoguin
2015-02-16Merge branch 'patch-1' of https://github.com/grahamrhay/cowboyLoïc Hoguin
2015-02-16Use cow_ws for the Websocket parsing codeLoïc Hoguin
Updates Cowlib to 1.1.0
2015-02-04Use cowlib for parsing headers; remove cowboy_httpLoïc Hoguin
2015-02-03Use cowlib masterLoïc Hoguin
2015-02-01Add a test with host ending in a dot in the routerLoïc Hoguin
2015-02-01Fix small detail in docsLoïc Hoguin
2015-01-19Update getting_started.ezdocGraham Hay
Make example code dialyzer approved.
2014-12-21Discard whitespace at the end of header values earlyLoïc Hoguin
This is more in line with what RC7230 says, and will allow simplifying the parsing code of a few headers in cowlib.
2014-12-05Add typespecs for state record in cowboy_spdy moduleTakeru Ohta
2014-11-25Small clarification on max_request_line_lengthLoïc Hoguin
2014-11-24Docs clarification when returning a list of ws framesLoïc Hoguin
2014-11-23Add a specs document for RFC6585Loïc Hoguin
Only a few status codes. Comments in the previous commit apply.
2014-11-23Add an RFC7230 HTTP/1.1 server specification documentLoïc Hoguin
This document lists all rules that Cowboy HTTP server will follow after careful analysis of the RFC7230. Do note that not all these rules are implemented or tested yet, and that at the time of commit there may be rules that Cowboy will ultimately not implement (for various reasons including performance or leaving certain aspects up to the user code).
2014-11-07Rename 'halt' to 'stop' for better consistencyLoïc Hoguin
Now everywhere in Cowboy when we want to stop something we return a 'stop' tuple instead of one of the many choices depending on context that we had before. This particular change affects middlewares, sub protocols and REST handlers which were using 'halt' to stop processing.
2014-11-07Rename 'shutdown' close reason and tuples to 'stop'Loïc Hoguin
The 'shutdown' atom has a specific meaning inside OTP. We are instead going to use 'stop' which is pretty much the equivalent of what we actually do. 'shutdown' is now reserved for future special processes implementation.
2014-11-07Update erlang.mkLoïc Hoguin
2014-10-08change init/2 to return #state{} in documentationStefan Strigler
Most examples returned 'Opts' as given by second argument to init. By using '#state{}' the examples make it more clear that this is what is being passed as 'State' to all subsequent callbacks (if any).
2014-10-04Fix a bad link in the guideLoïc Hoguin
2014-10-04Update version to 2.0.0-pre.12.0.0-pre.1Loïc Hoguin
2014-10-04Update erlang.mkLoïc Hoguin
2014-10-04Update CHANGELOGLoïc Hoguin
2014-10-04Update AUTHORSLoïc Hoguin
2014-10-04Update ROADMAPLoïc Hoguin
2014-10-04Add a commented line to enable dialyze for tests in the MakefileLoïc Hoguin
2014-10-04Reverse the order of arguments of match_* functionsLoïc Hoguin
Wasn't following the same order as the rest of the module.
2014-10-03Remove the REST known_content_type callbackLoïc Hoguin
This callback was simply useless.
2014-10-03Replace some /binary to /bits in binary pattern matchingLoïc Hoguin
We don't need the extra check for multiple of 8 bits.
2014-10-03Fix a compile issue caused by a warningLoïc Hoguin
2014-10-03Fix two edge cases when the request-line provided is invalidLoïc Hoguin
2014-10-03Make examples use Cowboy masterLoïc Hoguin
2014-10-03Merge branch 'fix_peer_spec' of git://github.com/aahoughton/cowboyLoïc Hoguin
2014-10-01Remove empty sections from the manualLoïc Hoguin