Update max-client-connections's description
authorFabian Keil <fk@fabiankeil.de>
Thu, 25 Mar 2021 11:52:00 +0000 (12:52 +0100)
committerFabian Keil <fk@fabiankeil.de>
Wed, 10 Nov 2021 02:22:42 +0000 (03:22 +0100)
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

index bb93a80..042400e 100644 (file)
@@ -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>