summaryrefslogtreecommitdiff
path: root/tda.erl
diff options
context:
space:
mode:
Diffstat (limited to 'tda.erl')
-rw-r--r--tda.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/tda.erl b/tda.erl
index ba17d58..b417d9a 100644
--- a/tda.erl
+++ b/tda.erl
@@ -34,12 +34,12 @@ loop(Sock) ->
receive
{login} ->
io:format("Login~n", []),
- {ok, Hello} = acse:associate_request(),
+ {ok, Hello} = acse:associate(),
gen_tcp:send(Sock, Hello),
loop(Sock);
{logout} ->
io:format("Logout~n", []),
- {ok, Bye} = acse:release_request(),
+ {ok, Bye} = acse:release(),
gen_tcp:send(Sock, Bye),
loop(Sock);
{ext} ->