|
@@ -1279,7 +1279,7 @@ dirserv_thinks_router_is_unreliable(time_t now,
|
|
|
|
|
|
/** Return true iff <b>router</b> should be assigned the "HSDir" flag.
|
|
/** Return true iff <b>router</b> should be assigned the "HSDir" flag.
|
|
* Right now this means it advertises support for it, it has a high uptime,
|
|
* Right now this means it advertises support for it, it has a high uptime,
|
|
- * it has a DirPort open, it has the Stable flag and it's currently
|
|
|
|
|
|
+ * it has a DirPort open, it has the Stable and Fast flag and it's currently
|
|
* considered Running.
|
|
* considered Running.
|
|
*
|
|
*
|
|
* This function needs to be called after router-\>is_running has
|
|
* This function needs to be called after router-\>is_running has
|
|
@@ -1307,7 +1307,7 @@ dirserv_thinks_router_is_hs_dir(const routerinfo_t *router,
|
|
uptime = real_uptime(router, now);
|
|
uptime = real_uptime(router, now);
|
|
|
|
|
|
return (router->wants_to_be_hs_dir && router->dir_port &&
|
|
return (router->wants_to_be_hs_dir && router->dir_port &&
|
|
- node->is_stable &&
|
|
|
|
|
|
+ node->is_stable && node->is_fast &&
|
|
uptime >= get_options()->MinUptimeHidServDirectoryV2 &&
|
|
uptime >= get_options()->MinUptimeHidServDirectoryV2 &&
|
|
router_is_active(router, node, now));
|
|
router_is_active(router, node, now));
|
|
}
|
|
}
|