Almost ready to release beta3

This commit is contained in:
Diego Nehab 2005-01-02 22:44:00 +00:00
parent a8254e94f8
commit 97b26e0b66
23 changed files with 53 additions and 59 deletions

View file

@ -14,8 +14,8 @@ if arg then
port2 = arg[3] or port2
end
server1 = socket.try(socket.bind(host, port1))
server2 = socket.try(socket.bind(host, port2))
server1 = assert(socket.bind(host, port1))
server2 = assert(socket.bind(host, port2))
server1:settimeout(1) -- make sure we don't block in accept
server2:settimeout(1)