diff options
Diffstat (limited to 'src/ranch_conns_sup.erl')
-rw-r--r-- | src/ranch_conns_sup.erl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ranch_conns_sup.erl b/src/ranch_conns_sup.erl index 99853c5..3cc09be 100644 --- a/src/ranch_conns_sup.erl +++ b/src/ranch_conns_sup.erl @@ -17,7 +17,7 @@ -behaviour(supervisor). %% API. --export([start_link/0]). +-export([start_link/1]). -export([start_protocol/5]). %% supervisor. @@ -25,9 +25,9 @@ %% API. --spec start_link() -> {ok, pid()}. -start_link() -> - supervisor:start_link(?MODULE, []). +-spec start_link(any()) -> {ok, pid()}. +start_link(Ref) -> + supervisor:start_link(?MODULE, Ref). -spec start_protocol(pid(), inet:socket(), module(), module(), any()) -> {ok, pid()}. @@ -36,6 +36,7 @@ start_protocol(ListenerPid, Socket, Transport, Protocol, Opts) -> %% supervisor. -init([]) -> +init(Ref) -> + ok = ranch_server:set_connections_sup(Ref, self()), {ok, {{simple_one_for_one, 0, 1}, [{?MODULE, {?MODULE, start_protocol, []}, temporary, brutal_kill, worker, [?MODULE]}]}}. |