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
This commit is contained in:
Hugo Locurcio
2022-03-23 17:07:17 +01:00
parent d7d528c15f
commit 7d8b344f01
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ public:
};
enum {
RESOLVER_MAX_QUERIES = 32,
RESOLVER_MAX_QUERIES = 256,
RESOLVER_INVALID_ID = -1
};