|
@@ -1460,12 +1460,13 @@ check_descriptor_ipaddress_changed(time_t now)
|
|
|
* headers. */
|
|
|
static uint32_t last_guessed_ip = 0;
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+ * <b>suggestion</b>.
|
|
|
* If this address is different from the one we think we are now, and
|
|
|
* if our computer doesn't actually know its IP address, then switch. */
|
|
|
void
|
|
|
-router_new_address_suggestion(const char *suggestion,
|
|
|
- const dir_connection_t *d_conn)
|
|
|
+router_new_address_suggestion(const char *suggestion,
|
|
|
+ const dir_connection_t *d_conn)
|
|
|
{
|
|
|
uint32_t addr, cur = 0;
|
|
|
struct in_addr in;
|
|
@@ -1497,9 +1498,9 @@ router_new_address_suggestion(const char *suggestion,
|
|
|
}
|
|
|
if (addr == d_conn->_base.addr) {
|
|
|
|
|
|
- log_notice(LD_DIR, "A directory server told us our IP is %s, but that "
|
|
|
- "seems to be the IP of the directory server saying these "
|
|
|
- "things. Ignoring.", suggestion);
|
|
|
+ log_debug(LD_DIR, "A directory server told us our IP address is %s, "
|
|
|
+ "but he's just reporting his own IP address. Ignoring.",
|
|
|
+ suggestion);
|
|
|
return;
|
|
|
}
|
|
|
|