summaryrefslogtreecommitdiffstats
path: root/src/knot/nameserver/xfr.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/knot/nameserver/xfr.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/knot/nameserver/xfr.h b/src/knot/nameserver/xfr.h
index 94a5621..e6d06b6 100644
--- a/src/knot/nameserver/xfr.h
+++ b/src/knot/nameserver/xfr.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2023 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
+/* Copyright (C) 2024 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -36,10 +36,11 @@ void xfr_stats_end(struct xfr_stats *stats);
static inline
void xfr_log_finished(const knot_dname_t *zone, log_operation_t op,
- log_direction_t dir, const struct sockaddr *remote,
- knotd_query_proto_t proto, const struct xfr_stats *stats)
+ log_direction_t dir, const struct sockaddr_storage *remote,
+ knotd_query_proto_t proto, const knot_dname_t *key_name,
+ const struct xfr_stats *stats)
{
- ns_log(LOG_INFO, zone, op, dir, remote, proto, false,
+ ns_log(LOG_INFO, zone, op, dir, remote, proto, false, key_name,
"%sfinished, %0.2f seconds, %u messages, %u bytes",
(proto == KNOTD_QUERY_PROTO_QUIC && dir == LOG_DIRECTION_OUT ? "buffering " : ""),
time_diff_ms(&stats->begin, &stats->end) / 1000.0,