This commit is contained in:
2026-05-21 14:32:38 +09:00
parent 3259e802db
commit 77ff0ca084
4 changed files with 252 additions and 85 deletions
+9
View File
@@ -0,0 +1,9 @@
send(Socket, Binary) ->
case gen_tcp:send(Socket, Binary) of
ok ->
ok;
Error ->
ok = tell(info, "Failure on ~w:send/2: ~p", [?MODULE, Error]),
ok = zx_net:disconnect(Socket),
exit(normal)
end.