luasocket/samples/echoclnt.lua

25 lines
713 B
Lua
Raw Normal View History

-----------------------------------------------------------------------------
-- UDP sample: echo protocol client
-- LuaSocket sample files
-- 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
host = socket.dns.toip(host)
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
socket.try(udp:send(line))
dgram = socket.try(udp:receive())
2001-01-25 22:59:39 +01:00
print(dgram)
end