aboutsummaryrefslogtreecommitdiff
path: root/samples/daytimeclnt.lua
blob: 1107c6ad622c9d9447fe81c806c613f80ad44a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 = toip(host)
udp = udpsocket()
print("Using host '" ..host.. "' and port " ..port.. "...")
err = udp:sendto("anything", host, port)
if err then print(err) exit() end
dgram, err = udp:receive()
if not dgram then print(err) exit() end
write(dgram)