[tor-commits] [tor/master] Refrain from listener rebinding when address families differ

nickm at torproject.org nickm at torproject.org
Tue Oct 16 21:29:54 UTC 2018


commit 9bb00a74bc4ebdb154e0f9289ed4ab362ee5c564
Author: rl1987 <rl1987 at sdf.lonestar.org>
Date:   Tue Oct 2 15:47:05 2018 +0300

    Refrain from listener rebinding when address families differ
---
 changes/bug27928               | 4 ++++
 src/core/mainloop/connection.c | 1 +
 2 files changed, 5 insertions(+)

diff --git a/changes/bug27928 b/changes/bug27928
new file mode 100644
index 000000000..a4ea63e8f
--- /dev/null
+++ b/changes/bug27928
@@ -0,0 +1,4 @@
+  o Minor bugfixes (networking):
+    - Refrain from attempting socket rebinding when old
+      and new listeners are in different address families.
+      Fixes bug 27928; bugfix on 0.3.5.1-alpha.
diff --git a/src/core/mainloop/connection.c b/src/core/mainloop/connection.c
index 9ef0561a5..5ebfac6be 100644
--- a/src/core/mainloop/connection.c
+++ b/src/core/mainloop/connection.c
@@ -2798,6 +2798,7 @@ retry_listener_ports(smartlist_t *old_conns,
         }
 #ifdef ENABLE_LISTENER_REBIND
         const int may_need_rebind =
+          tor_addr_family(&wanted->addr) == tor_addr_family(&conn->addr) &&
           port_matches_exact && bool_neq(tor_addr_is_null(&wanted->addr),
                                          tor_addr_is_null(&conn->addr));
         if (replacements && may_need_rebind) {





More information about the tor-commits mailing list