diff options
author | Roger Dingledine <arma@torproject.org> | 2006-07-18 03:06:55 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-07-18 03:06:55 +0000 |
commit | e1f30a5f2171540854a382983a9a076d478604fb (patch) | |
tree | 1b9124fa23ff788a7970d37fd5acde85aa0736aa /src/or | |
parent | ac258d2cc8f00541772b5ae9e09505ff25c549a1 (diff) | |
download | tor-e1f30a5f2171540854a382983a9a076d478604fb.tar tor-e1f30a5f2171540854a382983a9a076d478604fb.tar.gz |
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
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/router.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/router.c b/src/or/router.c index 160f661ba..3ae6d1a24 100644 --- a/src/or/router.c +++ b/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(); } } |