luasocket/samples/listener.lua

26 lines
788 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
-----------------------------------------------------------------------------
2004-05-30 23:36:22 +02:00
require("socket")
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.. "...")
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)