Updated to remove use of global methods. Conforming to

LuaSocket release 1.2.1
This commit is contained in:
Diego Nehab 2001-03-06 19:46:42 +00:00
parent 29226588da
commit 2c9008772e
3 changed files with 15 additions and 15 deletions

View file

@ -7,16 +7,16 @@ 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)
err = udp:setsockname(host, port)
if err then print(err) exit() end
timeout(udp, 5)
ip, port = getsockname(udp)
udp:timeout(5)
ip, port = udp:getsockname()
print("Waiting packets on " .. ip .. ":" .. port .. "...")
while 1 do
dgram, ip, port = receivefrom(udp)
dgram, ip, port = udp:receivefrom()
if not dgram then print(ip)
else
print("Echoing from " .. ip .. ":" .. port)
sendto(udp, dgram, ip, port)
udp:sendto(dgram, ip, port)
end
end