2003-06-09 20:23:40 +02:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- UDP sample: echo protocol client
|
2003-06-26 20:47:49 +02:00
|
|
|
-- LuaSocket sample files
|
2003-06-09 20:23:40 +02:00
|
|
|
-- Author: Diego Nehab
|
|
|
|
-- RCS ID: $Id$
|
|
|
|
-----------------------------------------------------------------------------
|
2004-06-04 17:15:45 +02:00
|
|
|
local socket = require("socket")
|
2001-01-25 22:59:39 +01:00
|
|
|
host = host or "localhost"
|
|
|
|
port = port or 7
|
|
|
|
if arg then
|
|
|
|
host = arg[1] or host
|
|
|
|
port = arg[2] or port
|
|
|
|
end
|
2003-08-16 02:06:04 +02:00
|
|
|
host = socket.dns.toip(host)
|
2004-05-28 09:24:43 +02:00
|
|
|
udp = socket.try(socket.udp())
|
|
|
|
socket.try(udp:setpeername(host, port))
|
|
|
|
print("Using remote host '" ..host.. "' and port " .. port .. "...")
|
2001-01-25 22:59:39 +01:00
|
|
|
while 1 do
|
2003-03-28 22:08:50 +01:00
|
|
|
line = io.read()
|
|
|
|
if not line then os.exit() end
|
2004-05-28 09:24:43 +02:00
|
|
|
socket.try(udp:send(line))
|
|
|
|
dgram = socket.try(udp:receive())
|
2001-01-25 22:59:39 +01:00
|
|
|
print(dgram)
|
|
|
|
end
|