[Privoxy-commits] [privoxy] 14/30: Update max-client-connections's description

User Git git at git.privoxy.org
Thu Nov 11 04:42:04 UTC 2021


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit e994f44d9c5a0c61bf6b824720be67476d4487ed
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu Mar 25 12:52:00 2021 +0100

    Update max-client-connections's description
    
    On modern systems other than Windows Privoxy should
    use poll() in which case the FD_SETSIZE value isn't
    releveant.
---
 doc/source/p-config.sgml | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/doc/source/p-config.sgml b/doc/source/p-config.sgml
index bb93a806..042400ef 100644
--- a/doc/source/p-config.sgml
+++ b/doc/source/p-config.sgml
@@ -3184,10 +3184,15 @@ forward   /.*\.(exe|com|dll|zip)$    antivir.example.com:8010
    </para>
    <para>
     One most POSIX-compliant systems &my-app; can't properly deal with
-    more than FD_SETSIZE file descriptors at the same time and has to reject
-    connections if the limit is reached. This will likely change in a
-    future version, but currently this limit can't be increased without
-    recompiling &my-app; with a different FD_SETSIZE limit.
+    more than FD_SETSIZE file descriptors if &my-app; has been configured
+    to use select() and has to reject connections if the limit is reached.
+    When using select() this limit therefore can't be increased without
+    recompiling &my-app; with a different FD_SETSIZE limit unless &my-app;
+    is running on Windows with _WIN32 defined.
+   </para>
+   <para>
+    When &my-app; has been configured to use poll() the FD_SETSIZE limit
+    does not apply.
    </para>
   </listitem>
  </varlistentry>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list