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

Remove the keep-response-order ACL map

The keep-response-order option has been obsoleted, and in this commit,
remove the keep-response-order ACL map rendering the option no-op, the
call the isc_nm_sequential() and the now unused isc_nm_sequential()
function itself.
This commit is contained in:
Ondřej Surý
2022-01-27 10:09:07 +01:00
parent 30f4bdb17e
commit d01562f22b
8 changed files with 6 additions and 92 deletions

View File

@@ -1915,18 +1915,6 @@ ns__client_request(isc_nmhandle_t *handle, isc_result_t eresult,
return;
}
/*
* Disable pipelined TCP query processing if necessary.
*/
if (TCP_CLIENT(client) &&
(client->message->opcode != dns_opcode_query ||
(client->sctx->keepresporder != NULL &&
dns_acl_allowed(&netaddr, NULL, client->sctx->keepresporder,
env))))
{
isc_nm_sequential(handle);
}
dns_opcodestats_increment(client->sctx->opcodestats,
client->message->opcode);
switch (client->message->opcode) {