luasocket/samples/listener.lua

33 lines
818 B
Lua
Raw Normal View History

2003-03-28 22:08:50 +01:00
-----------------------------------------------------------------------------
-- TCP sample: Little program to dump lines received at a given port
-- LuaSocket sample files
-- Author: Diego Nehab
-- RCS ID: $Id$
2003-03-28 22:08:50 +01:00
-----------------------------------------------------------------------------
2001-09-27 22:02:24 +02:00
host = host or "*"
port = port or 8080
2000-12-29 23:15:09 +01:00
if arg then
host = arg[1] or host
port = arg[2] or port
end
print("Binding to host '" ..host.. "' and port " ..port.. "...")
2003-03-28 22:08:50 +01:00
s, e = socket.bind(host, port)
2000-12-29 23:15:09 +01:00
if not s then
print(e)
exit()
end
i, p = s:getsockname()
2000-12-29 23:15:09 +01:00
print("Waiting connection from talker on " .. i .. ":" .. p .. "...")
c, e = s:accept()
if not c then
print(e)
exit()
end
print("Connected. Here is the stuff:")
l, e = c:receive()
while not e do
print(l)
l, e = c:receive()
end
print(e)