Re: Need help with a simple UNIX sockets server based on IO::Socket::UNIX



Oops sorry, the working workaround (not solution) is this:
while (($client = $sock->accept()) || ($client = $sock->accept())) {
....
}

.