Log a notice when changing to/from wildcard IP address

This commit is contained in:
rl1987
2018-04-26 11:25:16 +02:00
committed by Nick Mathewson
parent 9f7ed1d04e
commit d548453abd
+7 -3
View File
@@ -2843,12 +2843,11 @@ retry_all_listeners(smartlist_t *new_conns, int close_all_noncontrol)
connection_listener_new_for_port(r->new_port, &skip, &addr_in_use);
connection_t *old_conn = r->old_conn;
if (skip)
continue;
connection_close_immediate(r->old_conn);
connection_mark_for_close(r->old_conn);
connection_close_immediate(old_conn);
connection_mark_for_close(old_conn);
if (addr_in_use) {
new_conn = connection_listener_new_for_port(r->new_port,
@@ -2859,6 +2858,11 @@ retry_all_listeners(smartlist_t *new_conns, int close_all_noncontrol)
smartlist_add(new_conns, new_conn);
log_notice(LD_NET, "Closed no-longer-configured %s on %s:%d "
"(replaced by %s:%d)",
conn_type_to_string(old_conn->type), old_conn->address,
old_conn->port, new_conn->address, new_conn->port);
tor_free(r);
SMARTLIST_DEL_CURRENT(replacements, r);
} SMARTLIST_FOREACH_END(r);