Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-24 | Fix a test error on FreeBSD | Loïc Hoguin | |
2016-11-24 | Wait before calling ranch:info() in tests | Loïc Hoguin | |
Otherwise gen_tcp doesn't have enough time to connect. | |||
2016-11-24 | Add ranch:info/0 and ranch:procs/2 | Loïc Hoguin | |
Provides detailed information about Ranch listeners | |||
2016-11-24 | Don't attempt to start ssl anymore | Loïc Hoguin | |
Ranch now depends on SSL. Users embedding listeners in their supervision tree are expected to depend on SSL too if they are using it. | |||
2016-11-24 | Don't include observer in example release | Loïc Hoguin | |
2016-11-24 | Update AUTHORS | Loïc Hoguin | |
2016-11-24 | Update copyright year | Loïc Hoguin | |
2016-11-15 | Disable HiPE/ErLLVM for now | Loïc Hoguin | |
Too much work to fix tests at this point. | |||
2016-11-15 | Fix acceptors getting stuck because of socket errors | Loïc Hoguin | |
We always get the acceptor to resume. The child process will be killed, and the current code will ignore any EXIT message when that happens because the pid isn't in the process dictionary. | |||
2016-11-15 | Add a test for double removal of connections | Loïc Hoguin | |
2016-11-15 | Track removed connections | James Fish | |
2016-11-15 | Improve error reporting | Alexey Lebedeff | |
Simplify some return values, improve error messages for eaddrinuse and no_cert. Amended to add tests and simpler code. Also hides the contents of cert and key transport options, if any. | |||
2016-11-15 | Refer to the tcp_reverse example for full gen_server | Loïc Hoguin | |
2016-11-15 | Update .gitignore | Loïc Hoguin | |
2016-11-15 | Remove examples .app.src files | Loïc Hoguin | |
2016-11-15 | Properly handle Ctrl+D in examples | Loïc Hoguin | |
2016-11-15 | Remove bad advice for gen_server protocols | Loïc Hoguin | |
Also improves the good example a little by using spawn_link instead of start_link. | |||
2016-11-15 | Clarify max_connections + NbAcceptors + backlog in the guide | Loïc Hoguin | |
2016-11-15 | Add ssl to the list of dependencies | Loïc Hoguin | |
2016-11-15 | Update support list | Loïc Hoguin | |
We now do R16B+ (because R15 doesn't compile anymore on my CI servers), except 18.3.2 and 18.3.3 (known SSL issues). Also update the list of supported platforms. | |||
2016-11-15 | Update Erlang.mk and CI OTP versions for 19.1.6 | Loïc Hoguin | |
2016-11-08 | Check for the SSL version for SNI instead of Makefile | Loïc Hoguin | |
2016-11-08 | Skip SNI tests on OTP<18 in CI | Loïc Hoguin | |
2016-11-08 | Allow listening with only SNI options | Loïc Hoguin | |
Cert/certfile is no longer required if SNI options are provided. | |||
2016-11-08 | Blacklist listen options instead of whitelist | Loïc Hoguin | |
Dialyzer will still complain about unknown options, but at least users won't be stuck waiting for an upstream update. | |||
2016-11-01 | Add SSL options for legacy software interoperability | Alexandru Munteanu | |
2016-11-01 | Update Erlang.mk | Loïc Hoguin | |
2016-11-01 | Makefile tweak; only using BuildKite now | Loïc Hoguin | |
2016-10-18 | Erlang/OTP 19.1.5 | Loïc Hoguin | |
2016-10-14 | Erlang/OTP 19.1.4 | Loïc Hoguin | |
2016-10-11 | Update CI targets | Loïc Hoguin | |
2016-10-10 | Prevent a race condition when stopping listeners | Loïc Hoguin | |
In some cases the ranch_server:get_connections_sup/1 call could still succeed depending on timing. | |||
2016-10-10 | Start tracing before starting the listener in tests | Loïc Hoguin | |
2016-10-10 | Ignore ets:delete/2 return value, always true | Loïc Hoguin | |
2016-10-10 | Update erlang.mk | Loïc Hoguin | |
2016-10-09 | Make values for the TLS 1.2 signature_algorithms extension configurable | Victor | |
Added in ssl-7.3.1 (OTP-13261). Documented in ssl-8.0. | |||
2016-10-09 | Update links in README | Loïc Hoguin | |
2016-10-08 | Remove AppVeyor/CircleCI files | Loïc Hoguin | |
2016-10-08 | Update CI targets | Loïc Hoguin | |
Drop support for R15 because old and doesn't compile on most of my platforms anymore. | |||
2016-09-19 | Don't silently drop the accept rate | Maas-Maarten Zeeman | |
2016-09-19 | Renaming NbAcceptors to NumAcceptors | ferigis | |
2016-09-19 | Fix a spelling issue in guide | developerworks | |
2016-09-19 | Add ipv6_v6only listen option | Marc Worrell | |
2016-01-20 | Fix a link in the user guide | Loïc Hoguin | |
2015-12-18 | Update changelog | Loïc Hoguin | |
2015-12-18 | Update to 1.2.11.2.1 | Loïc Hoguin | |
2015-12-18 | Add AppVeyor configuration | Loïc Hoguin | |
2015-12-18 | Fix Dialyzer test on CircleCI | Loïc Hoguin | |
2015-12-18 | Update CI OTP versions | Loïc Hoguin | |
And only use the last version on public CIs. | |||
2015-12-18 | Use the default restart intensity in all supervisors | Loïc Hoguin | |
This reduces from 10 restarts in 10 seconds to 1 restart in 5 seconds. This is the new default in OTP 18, and it fits the kinds of processes that Ranch deals with: * Supervisors: default makes sense. * Acceptors: they crash on socket error. They'll probably crash again if the socket didn't change. * Connection processes: they are never restarted. |