Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-23 | Update the edoc for cowboy_ssl_transport:listen/1 | Ali Sabil | |
2012-03-21 | Add support for specifying the ciphers for the SSL transport | Ali Sabil | |
2012-03-21 | Simplify the options filtering code in cowboy_ssl_transport | Ali Sabil | |
2012-03-12 | Rename inet:ip_port() to inet:port_number() | Loïc Hoguin | |
Thanks go to @superbobry for pointing it out. | |||
2012-02-27 | Remove a completed @todo comment | Loïc Hoguin | |
2012-02-20 | Merge branch 'ssl-password-cacert' of https://github.com/DeadZen/cowboy | Loïc Hoguin | |
2012-02-08 | Add CA support and make SSL certificate password optional | DeadZen | |
2011-09-28 | Merge remote-tracking branch 'smarkets/cacertfile' | Loïc Hoguin | |
2011-09-28 | add cacertfile configuration | Steven Gravell | |
2011-07-06 | Add documentation for the public interface. | Loïc Hoguin | |
This is probably not perfect yet but it should be better than nothing. We'll improve things with feedback received from the many users. | |||
2011-06-21 | Pass {ip, Ip} configuration through for TCP and SSL transports | Hunter Morris | |
2011-05-25 | Refresh the type specifications. | Loïc Hoguin | |
Following discussions on #erlounge. Also fixes compilation in R14B03 and fixes a few underspecs dialyzer warnings. | |||
2011-05-24 | Automatically start crypto, public_key and ssl if needed. | Loïc Hoguin | |
Following mochiweb and misultin's example here even though I'm not too thrilled about starting them and not stopping but it's optional and the application's author can start/stop them as normal anyway. | |||
2011-05-09 | Increase the default backlog from 128 to 1024. | Loïc Hoguin | |
Improves reliability under heavy load. | |||
2011-04-30 | Add backlog transport option. | Loïc Hoguin | |
This fixes issues with the http_load benchmark tool. The default backlog option from OTP only queues up to 5 connections, which is way too low for a fast-responding server. Issue initially found thanks to DeadZen bugging me to test cowboy with http_load. Fix found thanks to ostinelli's misultin already having the backlog option which was the one thing it did differently than cowboy. | |||
2011-04-29 | Fix type specs for ssl:socket. | Loïc Hoguin | |
Should fix the warnings given by the Dialyzer-current build over at http://dialyzer.softlab.ntua.gr/current/cowboy/ Thanks Kostis for the help. | |||
2011-04-18 | Remove the include/types.hrl file. | Loïc Hoguin | |
2011-04-18 | Replace port_number() by ip_port() from kernel/include/inet.hrl. | Loïc Hoguin | |
2011-04-18 | Replace posix() by atom(), for now. | Loïc Hoguin | |
The type isn't exported by OTP so we don't win much. Also, inet.erl and file.erl define posix() différently, so OTP needs to stop being so confuse in the first place before we can attempt to use it properly. | |||
2011-04-18 | Move the opaque type sslsocket() out of include/types.hrl. | Loïc Hoguin | |
2011-04-17 | Use the inet:ip_address() type instead of the user-defined one. | Loïc Hoguin | |
2011-04-16 | Add an accept timeout for code reloading. | Loïc Hoguin | |
Thought it was already there, but I guess not. Anyway it's here now so everything is back to normal. ;) | |||
2011-04-14 | SSL transport uses sslsocket(), not plain socket(). | Loïc Hoguin | |
2011-04-12 | Add a Transport:messages/0 function to obtain the atoms sent in active mode. | Loïc Hoguin | |
That way we can support active mode without having to hardcode the atoms for each transports available. | |||
2011-04-03 | Add initial SSL transport support. | Loïc Hoguin | |
Code is working but hasn't been benchmarked yet. |