mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
remove redundant logs about unreachable servers
svn:r4905
This commit is contained in:
parent
467fd6e4e6
commit
33b2abbc90
@ -554,25 +554,6 @@ list_server_status(smartlist_t *routers, char **router_status_out)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Log complaints about each server that is connected to us and has
|
|
||||||
* been found unreachable for the past several testing periods.
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
dirserv_log_unreachable_servers(time_t now)
|
|
||||||
{
|
|
||||||
smartlist_t *descriptor_list = get_descriptor_list();
|
|
||||||
if (!descriptor_list)
|
|
||||||
return;
|
|
||||||
|
|
||||||
SMARTLIST_FOREACH(descriptor_list, routerinfo_t *, ri,
|
|
||||||
{
|
|
||||||
if (dirserv_thinks_router_is_blatantly_unreachable(ri, now))
|
|
||||||
log_fn(LOG_NOTICE,
|
|
||||||
"Router %s (%s:%d) is connected to us but not reachable by us.",
|
|
||||||
ri->nickname, ri->address, ri->or_port);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Given a (possibly empty) list of config_line_t, each line of which contains
|
/* Given a (possibly empty) list of config_line_t, each line of which contains
|
||||||
* a list of comma-separated version numbers surrounded by optional space,
|
* a list of comma-separated version numbers surrounded by optional space,
|
||||||
* allocate and return a new string containing the version numbers, in order,
|
* allocate and return a new string containing the version numbers, in order,
|
||||||
|
@ -692,7 +692,6 @@ run_scheduled_events(time_t now)
|
|||||||
routerlist_remove_old_routers(ROUTER_MAX_AGE);
|
routerlist_remove_old_routers(ROUTER_MAX_AGE);
|
||||||
|
|
||||||
if (authdir_mode(options)) {
|
if (authdir_mode(options)) {
|
||||||
dirserv_log_unreachable_servers(now);
|
|
||||||
if (!we_are_hibernating()) { /* try to determine reachability */
|
if (!we_are_hibernating()) { /* try to determine reachability */
|
||||||
router_retry_connections(1);
|
router_retry_connections(1);
|
||||||
}
|
}
|
||||||
|
@ -1677,7 +1677,6 @@ void dirserv_free_descriptors(void);
|
|||||||
int dirserv_thinks_router_is_blatantly_unreachable(routerinfo_t *router,
|
int dirserv_thinks_router_is_blatantly_unreachable(routerinfo_t *router,
|
||||||
time_t now);
|
time_t now);
|
||||||
int list_server_status(smartlist_t *routers, char **router_status_out);
|
int list_server_status(smartlist_t *routers, char **router_status_out);
|
||||||
void dirserv_log_unreachable_servers(time_t now);
|
|
||||||
int dirserv_dump_directory_to_string(char **dir_out,
|
int dirserv_dump_directory_to_string(char **dir_out,
|
||||||
crypto_pk_env_t *private_key);
|
crypto_pk_env_t *private_key);
|
||||||
void directory_set_dirty(void);
|
void directory_set_dirty(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user