aboutsummaryrefslogtreecommitdiff
path: root/samples/echosrvr.lua
blob: fe7da06b21e3720016f3a8a25f5d6ed6979e2c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
host = host or "127.0.0.1"
port = port or 7
if arg then
    host = arg[1] or host
    port = arg[2] or port
end
print("Binding to host '" ..host.. "' and port " ..port.. "...")
udp, err = udpsocket()
if not udp then print(err) exit() end
err = setsockname(udp, host, port)
if err then print(err) exit() end
timeout(udp, 5)
ip, port = getsockname(udp)
print("Waiting packets on " .. ip .. ":" .. port .. "...")
while 1 do
	dgram, ip, port = receivefrom(udp)
	if not dgram then print(ip) 
	else 
		print("Echoing from " .. ip .. ":" .. port)
		sendto(udp, dgram, ip, port)
	end
end