2003-06-09 18:23:40 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
-- UDP sample: echo protocol client
|
2003-06-26 18:47:49 +00:00
|
|
|
-- LuaSocket sample files
|
2003-06-09 18:23:40 +00:00
|
|
|
-- Author: Diego Nehab
|
2012-04-11 13:21:25 -07:00
|
|
|
-- RCS ID: $Id: echoclnt.lua,v 1.10 2005/01/02 22:44:00 diego Exp $
|
2003-06-09 18:23:40 +00:00
|
|
|
-----------------------------------------------------------------------------
|
2004-06-04 15:15:45 +00:00
|
|
|
local socket = require("socket")
|
2001-01-25 21:59:39 +00: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 00:06:04 +00:00
|
|
|
host = socket.dns.toip(host)
|
2005-01-02 22:44:00 +00:00
|
|
|
udp = assert(socket.udp())
|
|
|
|
assert(udp:setpeername(host, port))
|
2004-05-28 07:24:43 +00:00
|
|
|
print("Using remote host '" ..host.. "' and port " .. port .. "...")
|
2001-01-25 21:59:39 +00:00
|
|
|
while 1 do
|
2003-03-28 21:08:50 +00:00
|
|
|
line = io.read()
|
2005-01-02 22:44:00 +00:00
|
|
|
if not line or line == "" then os.exit() end
|
|
|
|
assert(udp:send(line))
|
|
|
|
dgram = assert(udp:receive())
|
2001-01-25 21:59:39 +00:00
|
|
|
print(dgram)
|
|
|
|
end
|