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
|
2003-03-28 22:08:50 +01:00
|
|
|
host = socket.toip(host)
|
|
|
|
udp = socket.udp()
|
2001-01-25 22:59:39 +01:00
|
|
|
print("Using host '" ..host.. "' and port " ..port.. "...")
|
2001-03-06 20:23:21 +01:00
|
|
|
err = udp:sendto("anything", host, port)
|
2001-01-25 22:59:39 +01:00
|
|
|
if err then print(err) exit() end
|
2001-03-06 20:23:21 +01:00
|
|
|
dgram, err = udp:receive()
|
2001-01-25 22:59:39 +01:00
|
|
|
if not dgram then print(err) exit() end
|
2003-03-28 22:08:50 +01:00
|
|
|
io.write(dgram)
|