Compare commits

..

4 Commits

2 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ start_link(Socket) ->
gen_server:start_link(?MODULE, Socket, []). gen_server:start_link(?MODULE, Socket, []).
init(Socket) -> init(Socket) ->
ssl:setopts(Socket, [{active, true}]), ok = ssl:setopts(Socket, [{active, true}]),
{ok, #{socket => Socket}}. {ok, #{socket => Socket}}.
handle_call(_Request, _From, State) -> handle_call(_Request, _From, State) ->
@@ -26,7 +26,7 @@ handle_info({ssl, Socket, Data}, State) ->
{ok, {foo, _}} -> {ok, {foo, _}} ->
{ok, Encoded} {ok, Encoded}
= 'StudySystemProtocol':encode('Response', {msg, "Foo"}), = 'StudySystemProtocol':encode('Response', {msg, "Foo"}),
ssl:send(Socket, Encoded); ok = ssl:send(Socket, Encoded);
Result -> Result ->
io:format("Invalid message: ~p~n", [Result]), io:format("Invalid message: ~p~n", [Result]),
ok ok

View File

@@ -30,7 +30,7 @@ handle_cast(_Msg, State) ->
{noreply, State}. {noreply, State}.
handle_info(accept, State = #state{socket = Socket}) -> handle_info(accept, State = #state{socket = Socket}) ->
case ssl:transport_accept(Socket, 5000) of case ssl:transport_accept(Socket) of
{ok, TlsSocket} -> {ok, TlsSocket} ->
self() ! {handshake, TlsSocket}, self() ! {handshake, TlsSocket},
self() ! accept; self() ! accept;