diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-03-23 17:07:17 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-03-23 18:18:23 +0100 |
commit | 7d8b344f019f240cc734a0f2c67e8d445745d813 (patch) | |
tree | 20dbc1779e298fa935d39ac9f302361e991ddd2d /doc/classes | |
parent | d7d528c15f0e858b52bb0f510ff47e65c2341de1 (diff) |
Increase the maximum number of concurrent DNS queries from 32 to 256
This makes the following error message less likely to be printed
when performing many concurrent HTTP requests:
Condition ' resolving == IP::RESOLVER_INVALID_ID ' is true. returned: ERR_BUG
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/IP.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/IP.xml b/doc/classes/IP.xml index 7ecac8680a..569f7fe570 100644 --- a/doc/classes/IP.xml +++ b/doc/classes/IP.xml @@ -103,7 +103,7 @@ <constant name="RESOLVER_STATUS_ERROR" value="3" enum="ResolverStatus"> DNS hostname resolver status: Error. </constant> - <constant name="RESOLVER_MAX_QUERIES" value="32"> + <constant name="RESOLVER_MAX_QUERIES" value="256"> Maximum number of concurrent DNS resolver queries allowed, [constant RESOLVER_INVALID_ID] is returned if exceeded. </constant> <constant name="RESOLVER_INVALID_ID" value="-1"> |