aboutsummaryrefslogtreecommitdiffstats
path: root/test/notify_and_wait_protocol.erl
AgeCommit message (Collapse)Author
2019-06-04Fix Windows timing issuesjuhlig
2019-06-03Fix many conns_sups tests for Windowsjuhlig
2019-05-09Remove Socket argument from ranch_protocol:start_linkLoïc Hoguin
2012-08-20Add the 'ranch_protocol' behaviourLoïc Hoguin
2012-08-15Add tests for {active, once} for both TCP and SSLLoïc Hoguin
2012-08-06Make accept asynchronousLoïc Hoguin
Ranch now accepts connection asynchronously through a separate process. The accept process is linked to the acceptor, calls accept and does nothing else but send the socket back to the acceptor. This allows us to receive messages in the acceptor to handle upgrades instead of polling. This will also allow us later to make acceptors system processes. Remove support for connection pools in favor of a simpler max_connections setting. Connections can be removed from the count, allowing us to have as many long-lived connections as we want while still limiting the number of short-lived ones. Add max_connections, max_connections with long-lived connections, and upgrade tests.