luasocket/samples/echoclnt.lua

28 lines
779 B
Lua
Raw Normal View History

-----------------------------------------------------------------------------
-- UDP sample: echo protocol client
-- LuaSocket sample files
-- Author: Diego Nehab
-- RCS ID: $Id$
-----------------------------------------------------------------------------
2001-01-25 22:59:39 +01:00
host = host or "localhost"
port = port or 7
if arg then
host = arg[1] or host
port = arg[2] or port
end
host = socket.dns.toip(host)
2003-03-28 22:08:50 +01:00
udp, err = socket.udp()
assert(udp, err)
ret, err = udp:setpeername(host, port)
assert(ret, err)
print("Using host '" ..host.. "' and port " .. port .. "...")
2001-01-25 22:59:39 +01:00
while 1 do
2003-03-28 22:08:50 +01:00
line = io.read()
if not line then os.exit() end
ret, err = udp:send(line)
if not ret then print(err) os.exit() end
dgram, err = udp:receive()
2003-03-28 22:08:50 +01:00
if not dgram then print(err) os.exit() end
2001-01-25 22:59:39 +01:00
print(dgram)
end