mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-07-13 06:04:31 +02:00
Updated to remove use of global methods. Conforming to
LuaSocket release 1.2.1
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user