diff options
Diffstat (limited to 'src/or/dns.c')
-rw-r--r-- | src/or/dns.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 26daf39fb2..9bea7f574b 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -1407,6 +1407,9 @@ launch_wildcard_check(int min_len, int max_len, const char *suffix) name[len] = '\0'; strlcat(name, suffix, sizeof(name)); + log_info(LD_EXIT, "Testing whether our DNS server is hijacking nonexistent " + "domains with requrest for bogus hostname \"%s\"", name); + addr = tor_strdup(name); r = evdns_resolve_ipv4(name, DNS_QUERY_NO_SEARCH, evdns_wildcard_check_callback, addr); |