2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Simplify dns_dispatchmgr_create with fixed buffersize

- UDP buffersize is now established when creating dispatch manager
  and is always set to 4096.

- Set up the default port range in dispatchmgr before setting the magic
  number.

- Magic is not set until dispatchmgr is fully created.
This commit is contained in:
Evan Hunt
2020-12-09 15:45:13 -08:00
committed by Ondřej Surý
parent 57fce0e895
commit ca11f68d61
14 changed files with 138 additions and 173 deletions

View File

@@ -2175,7 +2175,7 @@ fctx_query(fetchctx_t *fctx, dns_adbaddrinfo_t *addrinfo,
}
result = dns_dispatch_getudp(
res->dispatchmgr, res->socketmgr, res->taskmgr,
&addr, 4096, 20000, 32768, 16411, 16433, attrs,
&addr, 20000, 32768, 16411, 16433, attrs,
&query->dispatch);
if (result != ISC_R_SUCCESS) {
goto cleanup_query;