Merge branch 'PHP-5.5'

* PHP-5.5:
  NEWS
  Added PHP_FCGI_BACKLOG, overrides the default listen backlog
This commit is contained in:
Arnaud Le Blanc 2013-06-29 17:55:39 +02:00
commit 4cf20656ba

View File

@ -1955,7 +1955,11 @@ consult the installation file that came with this distribution, or visit \n\
}
if (bindpath) {
fcgi_fd = fcgi_listen(bindpath, 128);
int backlog = 128;
if (getenv("PHP_FCGI_BACKLOG")) {
backlog = atoi(getenv("PHP_FCGI_BACKLOG"));
}
fcgi_fd = fcgi_listen(bindpath, backlog);
if (fcgi_fd < 0) {
fprintf(stderr, "Couldn't create FastCGI listen socket on port %s\n", bindpath);
#ifdef ZTS