aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tcp_echo/src/tcp_echo_app.erl
blob: 41b676ee453a10d6e1f91a98f93bda41a7acbc03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%% Feel free to use, reuse and abuse the code in this file.

%% @private
-module(tcp_echo_app).
-behaviour(application).

%% API.
-export([start/2]).
-export([stop/1]).

%% API.

start(_Type, _Args) ->
	{ok, _} = ranch:start_listener(tcp_echo,
		ranch_tcp, #{socket_opts => [{port, 5555}]},
		echo_protocol, []),
	tcp_echo_sup:start_link().

stop(_State) ->
	ok.