aboutsummaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2013-03-09Update to 0.8.20.8.2Loïc Hoguin
2013-03-06Merge branch 'check-body-length' of git://github.com/rambocoder/cowboyLoïc Hoguin
2013-03-06Stop using binary:match in cowboy_protocolLoïc Hoguin
It's been found slower than a custom equivalent to what we were using it for. As this is the critical path we prefer the custom solution.
2013-03-06Check the length before reading the body in body/1 and body_qs/1rambocoder
2013-03-05Make streamed chunk size configurableLoïc Hoguin
Defaults to a maximum of 1000000 bytes. Also standardize the te_identity and te_chunked decoding functions. Now they both try to read as much as possible (up to the limit), making body reading much faster when not using chunked encoding.
2013-03-05Handle identity transfer-encoding when determining body lengthLoïc Hoguin
2013-03-03Add '*' matcher for parametersSlava Yurin
For get_type_provided: '*' will be match any parameters of media-range in "accept" header. If '*' matched, then '*' is replaced by the matching parameters. If Accept header is missing and '*' using, then in media_type in parameters will be '*' and reply content-type will be without any parameters. For content_types_accepted: '*' will be match any parameters in "content-type" header.
2013-03-02Fix cowboy_router typesLoïc Hoguin
2013-03-01Make path check cross-platform and generally saferLoïc Hoguin
2013-02-27Optimize cowboy_static:rest_init/2Loïc Hoguin
2013-02-27Remove extraneous newlines in cowboy_staticLoïc Hoguin
2013-02-27Fix an incorrect comment in cowboy_routerLoïc Hoguin
2013-02-22Fix to prevent loop handler awakening immediately after response sentJames Fish
If a loop handler sent a response (e.g. cowboy_req:chunked_reply/2,/3) and then returns {loop, Req, HandlerState, hibernate} it would have a {cowboy_req, resp_sent} message in its message queue. This message would cause the process to immediately awaken, so it is flushed before hibernation.
2013-02-22Update to 0.8.10.8.1Loïc Hoguin
2013-02-21Added warn compile options. Fixed compile warnings.Egobrain
2013-02-20Add cowboy:set_env/3Loïc Hoguin
2013-02-17Merge branch 'fix-handler-spec' of git://github.com/fishcakez/cowboyLoïc Hoguin
2013-02-17Merge branch 'sub_protocol-behaviour' of git://github.com/fishcakez/cowboyLoïc Hoguin
2013-02-17Fix {suspend, ...} specs to use atom() for function nameJames Fish
2013-02-16Add sub protocol behaviourJames Fish
2013-02-15Make sure socket is passive once we've done with loop handlerAndrew Majorov
It is sometimes important to make a socket passive as it was initially and as it is expected to be by cowboy_protocol, right after we've done with loop handling.
2013-02-14Properly pass the handler's state to websocket_terminate/3 on closeLoïc Hoguin
2013-02-14Merge branch 'has_body_improved' of git://github.com/0xAX/cowboyLoïc Hoguin
2013-02-14Merge branch 'fix/websocket_callback_specs' of git://github.com/keynslug/cowboyLoïc Hoguin
2013-02-14Merge branch 'native_compile' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-14cowbot_req:has_body:/1 improved0xAX
2013-02-13Make cowboy_websocket.erl compile with +nativeAdam Cammack
Worked until cccc0bc
2013-02-13Update websocket handler callback specsAndrew Majorov
There are some additional terminate reasons exist which are not mentioned in the specs.
2013-02-12Make cowboy_http.erl compile with +nativeAdam Cammack
Worked until 27da092
2013-02-12Update to 0.8.00.8.0Loïc Hoguin
2013-02-12Make cowboy_protocol:resume/6 privateLoïc Hoguin
2013-02-12Fix connection state being ignored for unknown length streamingLoïc Hoguin
2013-02-12Merge branch 'static_doc' of git://github.com/acammack/cowboyLoïc Hoguin
2013-02-11Fix examples in cowboy_static edoc and guideAdam Cammack
2013-02-11Better handle socket closing with loop handlersLoïc Hoguin
We now read from the socket to be able to detect errors or TCP close events, and buffer the data if any. Once the data receive goes over a certain limit, which defaults to 5000 bytes, we simply close the connection with an {error, overflow} reason.
2013-02-09Do not reset the connection timeout timer on sendLoïc Hoguin
Sends can be successful even if the connection is gone.
2013-02-09Make sure rest_terminate is always calledLoïc Hoguin
Also improves error reporting.
2013-02-09Fix Location headerSlava Yurin
Fix #414
2013-02-06Fix crashes when creating the requestLoïc Hoguin
We now obtain the peer address before creating the Req object. If an error occurs, then something went wrong, we close the connection nicely directly.
2013-02-06Strip whitespaces when authorization type is unknownLoïc Hoguin
2013-02-06Merge branch 'expose-to_upper' of git://github.com/dvv/cowboyLoïc Hoguin
2013-02-06Merge branch 'no-unicode-uri' of git://github.com/dvv/cowboyLoïc Hoguin
2013-02-06Merge branch 'master' of git://github.com/tsloughter/cowboyLoïc Hoguin
2013-02-01add guards on set_resp_body_fun for streamlen and streamfunTristan Sloughter
2013-01-30Make sure the peer name is always availableLoïc Hoguin
2013-01-30Fix a new warning found by Dialyzer R16ALoïc Hoguin
2013-01-29Merge branch 'patch-1' of https://github.com/CamShaft/cowboyLoïc Hoguin
Conflicts: src/cowboy_rest.erl
2013-01-29Merge branch 'feature_basic_auth' of https://github.com/ivlis/cowboyLoïc Hoguin
2013-01-30Implement authorization header parsingIvan Lisenkov
Basic HTTP authorization according to RFC 2617 is implemented. Added an example of its usage with REST handler.
2013-01-29allow POST rest handling to specify path after accepting contentTom Burdick