Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
637
Issues
637
List
Boards
Labels
Service Desk
Milestones
Merge Requests
105
Merge Requests
105
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
f5662f41
Commit
f5662f41
authored
Sep 04, 2008
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2433. [tuning] Set initial timeout to 800ms.
parent
a4037b27
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
CHANGES
CHANGES
+6
-0
lib/dns/resolver.c
lib/dns/resolver.c
+3
-3
No files found.
CHANGES
View file @
f5662f41
2433. [tuning] Set initial timeout to 800ms.
2432. [placeholder]
2431. [bug] Acl processing could leak memory. [RT #18323]
...
...
@@ -108,6 +110,10 @@
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]
...
...
lib/dns/resolver.c
View file @
f5662f41
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: resolver.c,v 1.3
79 2008/08/22 23:47:17 tbox
Exp $ */
/* $Id: resolver.c,v 1.3
80 2008/09/04 04:23:43 marka
Exp $ */
/*! \file */
...
...
@@ -1121,9 +1121,9 @@ fctx_setretryinterval(fetchctx_t *fctx, unsigned int rtt) {
* list, and then we do exponential back-off.
*/
if
(
fctx
->
restarts
<
3
)
us
=
5
00000
;
us
=
8
00000
;
else
us
=
(
5
00000
<<
(
fctx
->
restarts
-
2
));
us
=
(
8
00000
<<
(
fctx
->
restarts
-
2
));
/*
* Double the round-trip time.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment