Skip to content

Commit 54e2199

Browse files
committed
fix connect func arguments
1 parent c807102 commit 54e2199

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use async_std::net::TcpStream;
1515

1616
let tcp_stream = TcpStream::connect("rust-lang.org:443").await?;
1717
let connector = TlsConnector::default();
18-
let handshake = connector::connect("www.rust-lang.org")?;
18+
let handshake = connector::connect("www.rust-lang.org", tcp_stream)?;
1919
let mut tls_stream = handshake.await?;
2020

2121
// ...

0 commit comments

Comments
 (0)