mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
when we begin reachability testing, log the address:port for each
port we're testing, so people are more likely to notice that they're using the wrong ip address. svn:r4808
This commit is contained in:
parent
d928411acd
commit
435d2d8fde
@ -531,12 +531,18 @@ circuit_send_next_onion_skin(circuit_t *circ)
|
||||
if (!has_completed_circuit) {
|
||||
or_options_t *options = get_options();
|
||||
has_completed_circuit=1;
|
||||
log(LOG_NOTICE,"Tor has successfully opened a circuit. Looks like it's working.");
|
||||
/* XXX009 Log a count of known routers here */
|
||||
if (server_mode(options) && !check_whether_orport_reachable())
|
||||
log(LOG_NOTICE,"Now checking whether ORPort %s%s reachable... (this may take several minutes)",
|
||||
options->DirPort ? "and DirPort " : "",
|
||||
log(LOG_NOTICE,"Tor has successfully opened a circuit. Looks like it's working.");
|
||||
if (server_mode(options) && !check_whether_orport_reachable()) {
|
||||
char dirbuf[128];
|
||||
if (options->DirPort)
|
||||
tor_snprintf(dirbuf, sizeof(dirbuf), " and DirPort %s:%d ",
|
||||
options->Address, options->DirPort);
|
||||
log(LOG_NOTICE,"Now checking whether ORPort %s:%d%s%s reachable... (this may take several minutes)",
|
||||
options->Address, options->ORPort,
|
||||
options->DirPort ? dirbuf : "",
|
||||
options->DirPort ? "are" : "is");
|
||||
}
|
||||
}
|
||||
circuit_rep_hist_note_result(circ);
|
||||
circuit_has_opened(circ); /* do other actions as necessary */
|
||||
|
Loading…
Reference in New Issue
Block a user