1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-29 16:18:49 +00:00
Files
ubf/socket_test_client.erl
Joseph Wayne Norton 01172799d8 import ubf-1.7.tgz
2009-04-11 20:53:36 +09:00

16 lines
266 B
Erlang

-module(socket_test_client).
-compile(export_all).
%% run at home
test() ->
case gen_tcp:connect("p2p.sics.se", 2010,
[binary, {active, true}]) of
{ok, Socket} ->
io:format("socket opened~n"),
gen_tcp:send(Socket, "hello"),
true
end.