aboutsummaryrefslogtreecommitdiff
path: root/src/or
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
commite1f30a5f2171540854a382983a9a076d478604fb (patch)
tree1b9124fa23ff788a7970d37fd5acde85aa0736aa /src/or
parentac258d2cc8f00541772b5ae9e09505ff25c549a1 (diff)
downloadtor-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.c1
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();
}
}