tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit d548453abdf6ed708b6cb7e0a58f11d40f0cf4d1
parent 9f7ed1d04e7afd261898236a70f3cd02697c4a01
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Thu, 26 Apr 2018 11:25:16 +0200

Log a notice when changing to/from wildcard IP address

Diffstat:
Msrc/core/mainloop/connection.c | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/core/mainloop/connection.c b/src/core/mainloop/connection.c @@ -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);