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-21 08:07:58 +02:00
local socket = require"socket"
2001-01-25 22:59:39 +01: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 22:08:50 +01:00
udp = socket.udp()
2001-01-25 22:59:39 +01:00
print("Using host '" ..host.. "' and port " ..port.. "...")
2003-05-25 03:54:13 +02:00
udp:setpeername(host, port)
udp:settimeout(3)
2003-05-25 03:54:13 +02: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 22:08:50 +01:00
io.write(dgram)