+2433. [tuning] Set initial timeout to 800ms.
+
2432. [placeholder]
2431. [bug] Acl processing could leak memory. [RT #18323]
2397. [bug] gssapi_functions had too many elements. [RT #18355]
+ [bug] Improve file descriptor management. New,
+ temporary, named.conf option reserved-sockets,
+ default 512. [RT #18344]
+
2396. [bug] Don't set SO_REUSEADDR for randomized ports.
[RT #18336]
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: resolver.c,v 1.379 2008/08/22 23:47:17 tbox Exp $ */
+/* $Id: resolver.c,v 1.380 2008/09/04 04:23:43 marka Exp $ */
/*! \file */
* list, and then we do exponential back-off.
*/
if (fctx->restarts < 3)
- us = 500000;
+ us = 800000;
else
- us = (500000 << (fctx->restarts - 2));
+ us = (800000 << (fctx->restarts - 2));
/*
* Double the round-trip time.