luasocket/test/testsrvr.lua

28 lines
748 B
Lua
Raw Normal View History

2003-03-28 22:08:50 +01:00
host = host or "localhost"
port = port or "8080"
2001-01-25 23:00:18 +01:00
2003-03-28 22:08:50 +01:00
server, error = socket.bind(host, port)
if not server then print("server: " .. tostring(error)) os.exit() end
ack = "\n"
2001-01-25 23:00:18 +01:00
while 1 do
2002-07-08 23:56:01 +02:00
print("server: waiting for client connection...");
control, error = server:accept()
assert(control, error)
2003-06-26 23:14:17 +02:00
-- control:setoption("nodelay", true)
2002-07-08 23:56:01 +02:00
while 1 do
command, error = control:receive()
if error then
control:close()
print("server: closing connection...")
break
end
sent, error = control:send(ack)
2002-07-08 23:56:01 +02:00
if error then
control:close()
print("server: closing connection...")
break
end
(loadstring(command))()
2002-07-08 23:56:01 +02:00
end
2001-01-25 23:00:18 +01:00
end