Can someone explain why ext/sockets and also stream socket functions care about FD_SETSIZE?
# define PHP_SAFE_FD_SET(fd, set) do { if (fd < FD_SETSIZE) FD_SET(fd, set);
} while(0)
On Linux, it's not a hard limitation imposed by the kernel. It's configurable
via sysctl.
-Andrei
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
