+2433. [tuning] Set initial timeout to 800ms.
+
2430. [bug] win32: isc_interval_set() could round down to
zero if the input was less than NS_INTERVAL
nanoseconds. Round up instead. [RT #18549]
2399. [bug] Abort timeout queries to reduce the number of open
UDP sockets. [RT #18367]
+ [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.284.18.77 2008/07/24 04:59:00 jinmei Exp $ */
+/* $Id: resolver.c,v 1.284.18.78 2008/09/04 04:56:52 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.