diff options
author | Chris Vandomelen <chrisv@php.net> | 2000-10-22 23:49:57 +0000 |
---|---|---|
committer | Chris Vandomelen <chrisv@php.net> | 2000-10-22 23:49:57 +0000 |
commit | 0e705a5f60e3bdc7545811132b6850301cf12340 (patch) | |
tree | 0bee9b1a91e1736c40220c9ecd4f0c4fa6517e2a | |
parent | b57f9eb541130842fed43c79a05cf0dfa9ee8fb7 (diff) | |
download | php-git-0e705a5f60e3bdc7545811132b6850301cf12340.tar.gz |
Added new INI entries to default php.ini files.
-rw-r--r-- | php.ini-dist | 3 | ||||
-rw-r--r-- | php.ini-optimized | 3 | ||||
-rw-r--r-- | php.ini-recommended | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/php.ini-dist b/php.ini-dist index 876c207448..a34baabfc9 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -485,6 +485,9 @@ pfpro.defaulttimeout = 30 ; default timeout in seconds ; pfpro.proxyport = ; default proxy port ; pfpro.proxylogon = ; default proxy logon ; pfpro.proxypassword = ; default proxy password +[Sockets] +sockets.use_system_read = On ; Use the system read() function instead of + ; the php_read() wrapper. ; Local Variables: ; tab-width: 4 diff --git a/php.ini-optimized b/php.ini-optimized index b33a56b8cb..85b722cd88 100644 --- a/php.ini-optimized +++ b/php.ini-optimized @@ -470,6 +470,9 @@ pfpro.defaulttimeout = 30 ; default timeout in seconds ; pfpro.proxylogon = ; default proxy logon ; pfpro.proxypassword = ; default proxy password +[Sockets] +sockets.use_system_read = Off ; Use the system read() function instead of + ; the php_read() wrapper. ; Local Variables: ; tab-width: 4 ; End: diff --git a/php.ini-recommended b/php.ini-recommended index b33a56b8cb..85b722cd88 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -470,6 +470,9 @@ pfpro.defaulttimeout = 30 ; default timeout in seconds ; pfpro.proxylogon = ; default proxy logon ; pfpro.proxypassword = ; default proxy password +[Sockets] +sockets.use_system_read = Off ; Use the system read() function instead of + ; the php_read() wrapper. ; Local Variables: ; tab-width: 4 ; End: |