[tor-commits] [tor/master] Don't fail to send netinfo if real_addr is unset

nickm at torproject.org nickm at torproject.org
Wed Nov 16 15:45:14 UTC 2011


commit 688b53059e56ddbc287de688258ebdd51b94e001
Author: Sebastian Hahn <sebastian at torproject.org>
Date:   Wed Nov 16 14:07:10 2011 +0100

    Don't fail to send netinfo if real_addr is unset
    
    If we haven't set real_addr on a connection, we also now that _base.addr
    hasn't been tampered with. So we can use that.
---
 src/or/connection_or.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/or/connection_or.c b/src/or/connection_or.c
index 18ee0df..320d8cb 100644
--- a/src/or/connection_or.c
+++ b/src/or/connection_or.c
@@ -1923,7 +1923,11 @@ connection_or_send_netinfo(or_connection_t *conn)
 
   /* Their address. */
   out = cell.payload + 4;
-  len = append_address_to_payload(out, &conn->real_addr);
+  /* We use &conn->real_addr below, unless it hasn't yet been set. If it
+   * hasn't yet been set, we know that _base.addr hasn't been tampered with
+   * yet either. */
+  len = append_address_to_payload(out, !tor_addr_is_null(&conn->real_addr)
+                                       ? &conn->real_addr : &conn->_base.addr);
   if (len<0)
     return -1;
   out += len;





More information about the tor-commits mailing list