luasocket/samples/daytimeclnt.lua

23 lines
698 B
Lua
Raw Normal View History

-----------------------------------------------------------------------------
-- UDP sample: daytime protocol client
-- LuaSocket sample files
-- Author: Diego Nehab
-----------------------------------------------------------------------------
2004-06-20 23:07:58 -07:00
local socket = require"socket"
2001-01-25 13:59:39 -08:00
host = host or "127.0.0.1"
port = port or 13
if arg then
host = arg[1] or host
port = arg[2] or port
end
host = socket.dns.toip(host)
2003-03-28 13:08:50 -08:00
udp = socket.udp()
2001-01-25 13:59:39 -08:00
print("Using host '" ..host.. "' and port " ..port.. "...")
2003-05-24 18:54:13 -07:00
udp:setpeername(host, port)
udp:settimeout(3)
2003-05-24 18:54:13 -07:00
sent, err = udp:send("anything")
if err then print(err) os.exit() end
dgram, err = udp:receive()
if not dgram then print(err) os.exit() end
2003-03-28 13:08:50 -08:00
io.write(dgram)