ranch_conns_sup.erl 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. %% Copyright (c) 2011-2012, Loïc Hoguin <essen@ninenines.eu>
  2. %%
  3. %% Permission to use, copy, modify, and/or distribute this software for any
  4. %% purpose with or without fee is hereby granted, provided that the above
  5. %% copyright notice and this permission notice appear in all copies.
  6. %%
  7. %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. %% @private
  15. -module(ranch_conns_sup).
  16. -behaviour(supervisor).
  17. -export([start_link/0, start_protocol/5]). %% API.
  18. -export([init/1]). %% supervisor.
  19. %% API.
  20. -spec start_link() -> {ok, pid()}.
  21. start_link() ->
  22. supervisor:start_link(?MODULE, []).
  23. -spec start_protocol(pid(), inet:socket(), module(), module(), any())
  24. -> {ok, pid()}.
  25. start_protocol(ListenerPid, Socket, Transport, Protocol, Opts) ->
  26. Protocol:start_link(ListenerPid, Socket, Transport, Opts).
  27. %% supervisor.
  28. -spec init([]) -> {'ok', {{'simple_one_for_one', 0, 1}, [{
  29. any(), {atom() | tuple(), atom(), 'undefined' | [any()]},
  30. 'permanent' | 'temporary' | 'transient',
  31. 'brutal_kill' | 'infinity' | non_neg_integer(),
  32. 'supervisor' | 'worker',
  33. 'dynamic' | [atom() | tuple()]}]
  34. }}.
  35. init([]) ->
  36. {ok, {{simple_one_for_one, 0, 1}, [{?MODULE, {?MODULE, start_protocol, []},
  37. temporary, brutal_kill, worker, [?MODULE]}]}}.