mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
correct "your server is reachable" log entries to indicate that it was
self-testing that told us so. svn:r5034
This commit is contained in:
parent
26cc51ffea
commit
8585599965
1 changed files with 2 additions and 2 deletions
|
@ -433,7 +433,7 @@ router_orport_found_reachable(void)
|
||||||
{
|
{
|
||||||
if (!can_reach_or_port) {
|
if (!can_reach_or_port) {
|
||||||
if (!clique_mode(get_options()))
|
if (!clique_mode(get_options()))
|
||||||
log(LOG_NOTICE,"Your ORPort is reachable from the outside. Excellent.%s",
|
log(LOG_NOTICE,"Self-testing indicates your ORPort is reachable from the outside. Excellent.%s",
|
||||||
get_options()->NoPublish ? "" : " Publishing server descriptor.");
|
get_options()->NoPublish ? "" : " Publishing server descriptor.");
|
||||||
can_reach_or_port = 1;
|
can_reach_or_port = 1;
|
||||||
mark_my_descriptor_dirty();
|
mark_my_descriptor_dirty();
|
||||||
|
@ -446,7 +446,7 @@ void
|
||||||
router_dirport_found_reachable(void)
|
router_dirport_found_reachable(void)
|
||||||
{
|
{
|
||||||
if (!can_reach_dir_port) {
|
if (!can_reach_dir_port) {
|
||||||
log(LOG_NOTICE,"Your DirPort is reachable from the outside. Excellent.");
|
log(LOG_NOTICE,"Self-testing indicates your DirPort is reachable from the outside. Excellent.");
|
||||||
can_reach_dir_port = 1;
|
can_reach_dir_port = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue