mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 06:33:44 +01:00
Merge remote-tracking branch 'origin/maint-0.2.6'
This commit is contained in:
commit
ed7f2482e2
4
changes/feature15006
Normal file
4
changes/feature15006
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor features (controller):
|
||||||
|
- Messages about problems in the bootstrap process now include
|
||||||
|
information about the server we were trying to connect to when we
|
||||||
|
noticed the problem. Closes ticket 15006.
|
@ -5086,19 +5086,26 @@ MOCK_IMPL(void,
|
|||||||
|
|
||||||
log_fn(severity,
|
log_fn(severity,
|
||||||
LD_CONTROL, "Problem bootstrapping. Stuck at %d%%: %s. (%s; %s; "
|
LD_CONTROL, "Problem bootstrapping. Stuck at %d%%: %s. (%s; %s; "
|
||||||
"count %d; recommendation %s)",
|
"count %d; recommendation %s; host %s at %s:%d)",
|
||||||
status, summary, warn,
|
status, summary, warn,
|
||||||
orconn_end_reason_to_control_string(reason),
|
orconn_end_reason_to_control_string(reason),
|
||||||
bootstrap_problems, recommendation);
|
bootstrap_problems, recommendation,
|
||||||
|
hex_str(or_conn->identity_digest, DIGEST_LEN),
|
||||||
|
or_conn->base_.address,
|
||||||
|
or_conn->base_.port);
|
||||||
|
|
||||||
connection_or_report_broken_states(severity, LD_HANDSHAKE);
|
connection_or_report_broken_states(severity, LD_HANDSHAKE);
|
||||||
|
|
||||||
tor_snprintf(buf, sizeof(buf),
|
tor_snprintf(buf, sizeof(buf),
|
||||||
"BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\" WARNING=\"%s\" REASON=%s "
|
"BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\" WARNING=\"%s\" REASON=%s "
|
||||||
"COUNT=%d RECOMMENDATION=%s",
|
"COUNT=%d RECOMMENDATION=%s HOSTID=\"%s\" HOSTADDR=\"%s:%d\"",
|
||||||
bootstrap_percent, tag, summary, warn,
|
bootstrap_percent, tag, summary, warn,
|
||||||
orconn_end_reason_to_control_string(reason), bootstrap_problems,
|
orconn_end_reason_to_control_string(reason), bootstrap_problems,
|
||||||
recommendation);
|
recommendation,
|
||||||
|
hex_str(or_conn->identity_digest, DIGEST_LEN),
|
||||||
|
or_conn->base_.address,
|
||||||
|
(int)or_conn->base_.port);
|
||||||
|
|
||||||
tor_snprintf(last_sent_bootstrap_message,
|
tor_snprintf(last_sent_bootstrap_message,
|
||||||
sizeof(last_sent_bootstrap_message),
|
sizeof(last_sent_bootstrap_message),
|
||||||
"WARN %s", buf);
|
"WARN %s", buf);
|
||||||
|
Loading…
Reference in New Issue
Block a user