Skip to content

Commit ac32d7d

Browse files
authored
Merge pull request #3 from serzhiio/master
fix connect func arguments
2 parents c807102 + 54e2199 commit ac32d7d

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)