Merge branch 'maint-0.4.3'

This commit is contained in:
Nick Mathewson
2020-05-06 17:17:19 -04:00
4 changed files with 10 additions and 2 deletions
+4 -2
View File
@@ -1658,9 +1658,11 @@ parse_extended_hostname(char *address, hostname_type_t *type_out)
failed:
/* otherwise, return to previous state and return 0 */
*s = '.';
const bool is_onion = (*type_out == ONION_V2_HOSTNAME) ||
(*type_out == ONION_V3_HOSTNAME);
log_warn(LD_APP, "Invalid %shostname %s; rejecting",
(*type_out == (ONION_V2_HOSTNAME || ONION_V3_HOSTNAME) ? "onion " : ""),
safe_str_client(address));
is_onion ? "onion " : "",
safe_str_client(address));
return false;
}
+1
View File
@@ -661,6 +661,7 @@ connection_or_finished_flushing(or_connection_t *conn)
}
break;
}
break;
case OR_CONN_STATE_OPEN:
case OR_CONN_STATE_OR_HANDSHAKING_V2:
case OR_CONN_STATE_OR_HANDSHAKING_V3:
@@ -147,6 +147,7 @@ bto_cevent_apconn(const bt_orconn_t *bto)
break;
case OR_CONN_STATE_OPEN:
control_event_bootstrap(BOOTSTRAP_STATUS_AP_HANDSHAKE_DONE, 0);
break;
default:
break;
}