Skip to content
Snippets Groups Projects
Commit ec5f4f3c authored by teor's avatar teor
Browse files

relay/circuitbuild: Report IPv6 addresses in a debug log

Part of 33817.
parent f8f688b3
Branches
Tags
No related merge requests found
......@@ -337,9 +337,13 @@ circuit_extend(struct cell_t *cell, struct circuit_t *circ)
&should_launch);
if (!n_chan) {
log_debug(LD_CIRC|LD_OR,"Next router (%s): %s.",
fmt_addrport(&ec.orport_ipv4.addr,ec.orport_ipv4.port),
msg?msg:"????");
/* We can't use fmt_addr*() twice in the same function call,
* because it uses a static buffer. */
log_debug(LD_CIRC|LD_OR, "Next router IPv4 (%s): %s.",
fmt_addrport_ap(&ec.orport_ipv4),
msg ? msg : "????");
log_debug(LD_CIRC|LD_OR, "Next router IPv6 (%s).",
fmt_addrport_ap(&ec.orport_ipv6));
circuit_open_connection_for_extend(&ec, circ, should_launch);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment