Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
ibigbug committed Dec 25, 2023
1 parent ce6011a commit 7a433bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clash_lib/src/proxy/utils/socket_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub fn apply_tcp_options(s: TcpStream) -> std::io::Result<TcpStream> {
.with_time(Duration::from_secs(10))
.with_interval(Duration::from_secs(1)),
)?;
Ok(TcpStream::from_std(s.into())?)
TcpStream::from_std(s.into())
}
}

Expand Down

0 comments on commit 7a433bb

Please sign in to comment.