mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 22:38:21 +01:00
21 lines
526 B
Lua
21 lines
526 B
Lua
socket = require("socket");
|
|
host = host or "localhost";
|
|
port = port or "8383";
|
|
server = assert(socket.bind(host, port));
|
|
ack = "\n";
|
|
while 1 do
|
|
print("server: waiting for client connection...");
|
|
control = assert(server:accept());
|
|
while 1 do
|
|
command, emsg = control:receive();
|
|
if emsg == "closed" then
|
|
control:close()
|
|
break
|
|
end
|
|
assert(command, emsg)
|
|
assert(control:send(ack));
|
|
print(command);
|
|
((loadstring or load)(command))();
|
|
end
|
|
end
|