dudeswave2/ranch/examples/tcp_reverse/src/tcp_reverse_app.erl

21 lines
381 B
Erlang

%% Feel free to use, reuse and abuse the code in this file.
%% @private
-module(tcp_reverse_app).
-behaviour(application).
%% API.
-export([start/2]).
-export([stop/1]).
%% API.
start(_Type, _Args) ->
{ok, _} = ranch:start_listener(tcp_reverse,
ranch_tcp, #{socket_opts => [{port, 5555}]},
reverse_protocol, []),
tcp_reverse_sup:start_link().
stop(_State) ->
ok.