Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechsromek committed Oct 1, 2024
1 parent abbb292 commit ff843f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iris-mpc-upgrade/src/bin/tcp_ssl_upgrade_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async fn prepare_tls_stream_for_writing(address: &str) -> eyre::Result<TlsStream
address, domain
);
// Perform the TLS handshake to establish a secure connection
let tls_stream: TlsStream<TcpStream> = tls_connector.connect(address, stream).await?;
let tls_stream: TlsStream<TcpStream> = tls_connector.connect(&domain, stream).await?;

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

Expand Down

0 comments on commit ff843f7

Please sign in to comment.