Skip to content
Snippets Groups Projects
Commit ce6fbac0 authored by Ian Jackson's avatar Ian Jackson :speech_balloon:
Browse files

Merge branch 'bootstrap_second' into 'main'

arti: create TorClient first, then bootstrap.

Closes #336

See merge request tpo/core/arti!320
parents 516a2a3d c6c45316
No related branches found
No related tags found
No related merge requests found
......@@ -110,16 +110,15 @@ async fn run<R: Runtime>(
client_config: TorClientConfig,
) -> Result<()> {
use futures::FutureExt;
let client = TorClient::create_unbootstrapped(runtime.clone(), client_config)?;
futures::select!(
r = exit::wait_for_ctrl_c().fuse() => r,
r = async {
let client = TorClient::create_bootstrapped(
runtime.clone(),
client_config,
).await?;
if arti_config.application().watch_configuration() {
watch_cfg::watch_for_config_changes(config_sources, arti_config, client.clone())?;
}
client.bootstrap().await?;
info!("Sufficiently bootstrapped; opening SOCKS proxy listeners.");
proxy::run_socks_proxy(runtime, client, socks_port).await
}.fuse() => r,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment