summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-07-18 03:06:55 +0000
committerRoger Dingledine <arma@torproject.org>2006-07-18 03:06:55 +0000
commit13123187b3d26fb63394c9c49984661765e715bf (patch)
treed1f48f075bc0efd5a86ff7c11e6db5022d6c202d
parentc4a74f76c519f91298973d2308261e49645f1a4a (diff)
downloadtor-13123187b3d26fb63394c9c49984661765e715bf.tar.gz
tor-13123187b3d26fb63394c9c49984661765e715bf.zip
when we find our dirport to be reachable, mark our descriptor
dirty so we'll tell the world. (fixes bug 306 reported by pnx) svn:r6787
-rw-r--r--trunk/src/or/router.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/trunk/src/or/router.c b/trunk/src/or/router.c
index 160f661baa..3ae6d1a24a 100644
--- a/trunk/src/or/router.c
+++ b/trunk/src/or/router.c
@@ -479,6 +479,7 @@ router_dirport_found_reachable(void)
log_notice(LD_DIRSERV,"Self-testing indicates your DirPort is reachable "
"from the outside. Excellent.");
can_reach_dir_port = 1;
+ mark_my_descriptor_dirty();
}
}