2003-03-28 22:08:50 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2003-06-09 20:23:40 +02:00
|
|
|
-- TCP sample: Little program to dump lines received at a given port
|
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$
|
2003-03-28 22:08:50 +01:00
|
|
|
-----------------------------------------------------------------------------
|
2004-05-30 23:36:22 +02:00
|
|
|
require("socket")
|
2001-09-27 22:02:24 +02:00
|
|
|
host = host or "*"
|
2001-03-06 20:54:57 +01:00
|
|
|
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.. "...")
|
2004-05-30 23:36:22 +02:00
|
|
|
s = socket.try(socket.bind(host, port))
|
|
|
|
i, p = socket.try(s:getsockname())
|
2000-12-29 23:15:09 +01:00
|
|
|
print("Waiting connection from talker on " .. i .. ":" .. p .. "...")
|
2004-05-30 23:36:22 +02:00
|
|
|
c = socket.try(s:accept())
|
2000-12-29 23:15:09 +01:00
|
|
|
print("Connected. Here is the stuff:")
|
|
|
|
l, e = c:receive()
|
|
|
|
while not e do
|
|
|
|
print(l)
|
|
|
|
l, e = c:receive()
|
|
|
|
end
|
|
|
|
print(e)
|