mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-02 05:20:33 -05:00
dnstap: log actual local IPv6 address, not :: listening address
This commit is contained in:
parent
ecd812b4d6
commit
ccff953c25
1 changed files with 3 additions and 3 deletions
|
|
@ -1248,7 +1248,7 @@ client_send(ns_client_t *client) {
|
|||
#ifdef HAVE_DNSTAP
|
||||
if (client->view != NULL) {
|
||||
dns_dt_send(client->view, dtmsgtype,
|
||||
&client->peeraddr, &client->interface->addr,
|
||||
&client->peeraddr, &client->destsockaddr,
|
||||
ISC_TRUE, &zr, &client->requesttime, NULL,
|
||||
&buffer);
|
||||
}
|
||||
|
|
@ -1278,7 +1278,7 @@ client_send(ns_client_t *client) {
|
|||
if (client->view != NULL) {
|
||||
dns_dt_send(client->view, dtmsgtype,
|
||||
&client->peeraddr,
|
||||
&client->interface->addr,
|
||||
&client->destsockaddr,
|
||||
ISC_FALSE, &zr,
|
||||
&client->requesttime, NULL, &buffer);
|
||||
}
|
||||
|
|
@ -2826,7 +2826,7 @@ ns__client_request(isc_task_t *task, isc_event_t *event) {
|
|||
dtmsgtype = DNS_DTTYPE_AQ;
|
||||
|
||||
dns_dt_send(client->view, dtmsgtype, &client->peeraddr,
|
||||
&client->interface->addr, TCP_CLIENT(client), NULL,
|
||||
&client->destsockaddr, TCP_CLIENT(client), NULL,
|
||||
&client->requesttime, NULL, buffer);
|
||||
#endif /* HAVE_DNSTAP */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue