aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Collapse)Author
2017-02-06Fix version to 1.3.21.3.2niamtokik
2016-11-26Add asciideck as a docs dep1.3.0Loïc Hoguin
2016-11-15Disable HiPE/ErLLVM for nowLoïc Hoguin
Too much work to fix tests at this point.
2016-11-15Add ssl to the list of dependenciesLoïc Hoguin
2016-11-15Update Erlang.mk and CI OTP versions for 19.1.6Loïc Hoguin
2016-11-08Check for the SSL version for SNI instead of MakefileLoïc Hoguin
2016-11-08Skip SNI tests on OTP<18 in CILoïc Hoguin
2016-11-01Makefile tweak; only using BuildKite nowLoïc Hoguin
2016-10-18Erlang/OTP 19.1.5Loïc Hoguin
2016-10-14Erlang/OTP 19.1.4Loïc Hoguin
2016-10-11Update CI targetsLoïc Hoguin
2016-10-08Update CI targetsLoïc Hoguin
Drop support for R15 because old and doesn't compile on most of my platforms anymore.
2015-12-18Update CI OTP versionsLoïc Hoguin
And only use the last version on public CIs.
2015-08-20Update ct_helperLoïc Hoguin
2015-08-17Beginnings of modernizing the test suiteLoïc Hoguin
Merging because I have to do other work but this is still a nice enough improvement.
2015-08-13Fetch ct_helper before running ci-setupLoïc Hoguin
Since we copy a file into it.
2015-08-13CI: Use the erl_make_certs file from currently tested OTPLoïc Hoguin
2015-08-13Add the last two VMs to CILoïc Hoguin
2015-08-13Put less Erlang versions to make CircleCI happyLoïc Hoguin
2015-08-13Add more Erlang versions to CI_OTPLoïc Hoguin
2015-08-13Add initial circle.yml fileLoïc Hoguin
Only half the OTP versions are enabled so far, and the build will probably fail, but gotta start somewhere.
2014-08-01Update erlang.mk to 1.0.0Loïc Hoguin
2013-12-07Gracefully shutdown when stop_listener/1 is calledLoïc Hoguin
Implements the `shutdown` option as documented previously.
2013-08-16Add Transport:sendfile/4,/5James Fish
Adds offset based sendfile to transports. Same behaviour as file:sendfile/4,/5 except socket and file arguments are reversed and either a raw file or a filename can be used. sendfile/2,/4,/5 now compulsory callbacks in ranch_transport. ranch_tcp:sendfile/2 now defaults to a chunk_size of 8191 - the default for ranch_ssl:sendfile/2. The same default is used for both ranch_tcp:sendfile/4,5 and ranch_ssl:sendfile/4,5.
2013-05-01Use ct_helper to generate SSL certificates for testingLoïc Hoguin
2013-05-01Use erlang.mk for the MakefileLoïc Hoguin
2013-01-29Makefile verbosity tweaksLoïc Hoguin
2013-01-29Makefile: only recompile files newer than the .appLoïc Hoguin
2013-01-17Do not require rebar to build RanchLoïc Hoguin
All is done in the Makefile, like with Cowboy.
2012-04-14Import the acceptor code from CowboyLoïc Hoguin
Modules were renamed. The 'cowboy_' prefix became 'ranch_'. At the same time, ranch_ssl_transport became ranch_ssl, and ranch_tcp_transport became ranch_tcp, because appending '_transport' felt a bit redundant considering SSL and TCP clearly are transports. One test has been added to make sure everything is working.