Browse Source

Remove ranch:start_listener/6 and :child_spec/6

Loïc Hoguin 6 years ago
parent
commit
34758e99d5
1 changed files with 1 additions and 19 deletions
  1. 1 19
      src/ranch.erl

+ 1 - 19
src/ranch.erl

@@ -15,13 +15,11 @@
 -module(ranch).
 
 -export([start_listener/5]).
--export([start_listener/6]).
 -export([normalize_opts/1]).
 -export([stop_listener/1]).
 -export([suspend_listener/1]).
 -export([resume_listener/1]).
 -export([child_spec/5]).
--export([child_spec/6]).
 -export([accept_ack/1]).
 -export([handshake/1]).
 -export([handshake/2]).
@@ -46,7 +44,7 @@
 -export([require/1]).
 -export([log/4]).
 
--deprecated([start_listener/6, child_spec/6, accept_ack/1]).
+-deprecated([accept_ack/1]).
 
 -type max_conns() :: non_neg_integer() | infinity.
 -export_type([max_conns/0]).
@@ -80,14 +78,6 @@ start_listener(Ref, Transport, TransOpts0, Protocol, ProtoOpts)
 					Transport, TransOpts, Protocol, ProtoOpts)))
 	end.
 
--spec start_listener(ref(), non_neg_integer(), module(), opts(), module(), any())
-	-> supervisor:startchild_ret().
-start_listener(Ref, NumAcceptors, Transport, TransOpts0, Protocol, ProtoOpts)
-		when is_integer(NumAcceptors), is_atom(Transport), is_atom(Protocol) ->
-	TransOpts = normalize_opts(TransOpts0),
-	start_listener(Ref, Transport, TransOpts#{num_acceptors => NumAcceptors},
-		Protocol, ProtoOpts).
-
 -spec normalize_opts(opts()) -> opts().
 normalize_opts(Map) when is_map(Map) ->
 	Map;
@@ -155,14 +145,6 @@ child_spec(Ref, Transport, TransOpts0, Protocol, ProtoOpts) ->
 		Ref, Transport, TransOpts, Protocol, ProtoOpts
 	]}, permanent, infinity, supervisor, [ranch_listener_sup]}.
 
--spec child_spec(ref(), non_neg_integer(), module(), opts(), module(), any())
-	-> supervisor:child_spec().
-child_spec(Ref, NumAcceptors, Transport, TransOpts0, Protocol, ProtoOpts)
-		when is_integer(NumAcceptors), is_atom(Transport), is_atom(Protocol) ->
-	TransOpts = normalize_opts(TransOpts0),
-	child_spec(Ref, Transport, TransOpts#{num_acceptors => NumAcceptors},
-		Protocol, ProtoOpts).
-
 -spec accept_ack(ref()) -> ok.
 accept_ack(Ref) ->
 	{ok, _} = handshake(Ref),