diff options
-rw-r--r-- | src/or/router.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 28dee45b1c..8a741f5952 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -447,7 +447,9 @@ consider_testing_reachability(void) } if (!check_whether_dirport_reachable()) { - directory_initiate_command_router(me, DIR_PURPOSE_FETCH_DIR, 1, NULL, NULL, 0); + /* ask myself, via tor, for my server descriptor. */ + directory_initiate_command_router(me, DIR_PURPOSE_FETCH_SERVERDESC, + 1, "authority", NULL, 0); } } |