mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 22:45:39 +00:00
1169. [func] Identify recursive queries in the query log.
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -1,3 +1,5 @@
|
|||||||
|
1169. [func] Identify recursive queries in the query log.
|
||||||
|
|
||||||
1168. [bug] Empty also-notify clauses were not handled gracefully.
|
1168. [bug] Empty also-notify clauses were not handled gracefully.
|
||||||
[RT #2309]
|
[RT #2309]
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: query.c,v 1.214 2001/11/30 01:58:47 gson Exp $ */
|
/* $Id: query.c,v 1.215 2001/12/29 05:31:26 marka Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -3317,7 +3317,8 @@ log_query(ns_client_t *client) {
|
|||||||
dns_rdatatype_format(rdataset->type, typename, sizeof(typename));
|
dns_rdatatype_format(rdataset->type, typename, sizeof(typename));
|
||||||
|
|
||||||
ns_client_log(client, NS_LOGCATEGORY_QUERIES, NS_LOGMODULE_QUERY,
|
ns_client_log(client, NS_LOGCATEGORY_QUERIES, NS_LOGMODULE_QUERY,
|
||||||
level, "query: %s %s %s", namebuf, classname, typename);
|
level, "query: %s %s %s %s", namebuf, classname,
|
||||||
|
typename, WANTRECURSION(client) ? "+" : "-");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Reference in New Issue
Block a user