mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
fmt
This commit is contained in:
parent
f0f899a36e
commit
15025b89c1
14 changed files with 34 additions and 82 deletions
|
@ -77,9 +77,7 @@ pub fn from_tcp_stream(stream: net::TcpStream) -> Result<Io, io::Error> {
|
|||
|
||||
#[cfg(unix)]
|
||||
/// Convert std UnixStream to tokio's UnixStream
|
||||
pub fn from_unix_stream(
|
||||
stream: std::os::unix::net::UnixStream,
|
||||
) -> Result<Io, io::Error> {
|
||||
pub fn from_unix_stream(stream: std::os::unix::net::UnixStream) -> Result<Io, io::Error> {
|
||||
stream.set_nonblocking(true)?;
|
||||
Ok(Io::new(tok_io::net::UnixStream::from_std(stream)?))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue