Downgrade evdns warnings about weird replies.

evdns is allowed to give us unrecognized object types; it is allowed
to give us non-IPv4 answer types, and it is (even) allowed to give
us empty answers without an error.

Closes ticket 24097.
This commit is contained in:
Nick Mathewson 2017-11-16 09:30:19 -05:00
parent 56b7407a90
commit 2a98fcb848
2 changed files with 7 additions and 2 deletions

4
changes/ticket24097 Normal file
View File

@ -0,0 +1,4 @@
o Minor features (logging):
- Downgrade a pair of log messages that could occur when an exit's
resolver gave us an unusual (but not forbidden) response.
Closes ticket 24097.

View File

@ -1578,10 +1578,11 @@ evdns_callback(int result, char type, int count, int ttl, void *addresses,
escaped_safe_str(hostname));
tor_free(escaped_address);
} else if (count) {
log_warn(LD_EXIT, "eventdns returned only non-IPv4 answers for %s.",
log_info(LD_EXIT, "eventdns returned only unrecognized answer types "
" for %s.",
escaped_safe_str(string_address));
} else {
log_warn(LD_BUG, "eventdns returned no addresses or error for %s!",
log_info(LD_EXIT, "eventdns returned no addresses or error for %s.",
escaped_safe_str(string_address));
}
}