aboutsummaryrefslogtreecommitdiffstats
path: root/src/cowboy_listener.erl
AgeCommit message (Collapse)Author
2011-11-01Set the cowboy_listener process priority to highLoïc Hoguin
See comment added with it for more information.
2011-08-10Give the ListenerPid to the protocol on startupLoïc Hoguin
Also sends a message 'shoot' that can be received by the protocol to make sure Cowboy has had enough time to fully initialize the socket. This message should be received before any socket-related operations are performed. WebSocket request connections are now moved from the pool 'default' to the pool 'websocket', meaning we can have a lot of running WebSockets despite having a low 'max_connections' setting.
2011-08-10Introduce cowboy_listener for managing a listenerLoïc Hoguin
Currently only supports limiting the maximum number of connections by managing connection pools.