Skip to content

Commit

Permalink
add a println
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechsromek committed Sep 30, 2024
1 parent 27ba65d commit 3357dc4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iris-mpc-upgrade/src/bin/tcp_ssl_upgrade_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ async fn prepare_tls_stream_for_writing(address: &str) -> eyre::Result<TlsStream
let native_tls_connector = tokio_native_tls::native_tls::TlsConnector::new()?;
let tls_connector = TlsConnector::from(native_tls_connector);

println!("TLS connecting to {}", address);

// Perform the TLS handshake to establish a secure connection
let tls_stream: TlsStream<TcpStream> = tls_connector.connect(address, stream).await?;

Expand Down

0 comments on commit 3357dc4

Please sign in to comment.