mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix lifetimes for unix_connect/unix_connect_in
This commit is contained in:
parent
4cb9b13d85
commit
c9271144aa
4 changed files with 26 additions and 5 deletions
|
@ -41,9 +41,11 @@ pub fn tcp_connect_in(
|
|||
|
||||
#[cfg(unix)]
|
||||
/// Opens a unix stream connection.
|
||||
pub fn unix_connect<P>(addr: P) -> Pin<Box<dyn Future<Output = Result<Io, io::Error>>>>
|
||||
pub fn unix_connect<'a, P>(
|
||||
addr: P,
|
||||
) -> Pin<Box<dyn Future<Output = Result<Io, io::Error>> + 'a>>
|
||||
where
|
||||
P: AsRef<Path> + 'static,
|
||||
P: AsRef<Path> + 'a,
|
||||
{
|
||||
Box::pin(async move {
|
||||
let sock = tok_io::net::UnixStream::connect(addr).await?;
|
||||
|
@ -51,6 +53,21 @@ where
|
|||
})
|
||||
}
|
||||
|
||||
#[cfg(unix)]
|
||||
/// Opens a unix stream connection and specified memory pool.
|
||||
pub fn unix_connect_in<'a, P>(
|
||||
addr: P,
|
||||
pool: PoolRef,
|
||||
) -> Pin<Box<dyn Future<Output = Result<Io, io::Error>> + 'a>>
|
||||
where
|
||||
P: AsRef<Path> + 'a,
|
||||
{
|
||||
Box::pin(async move {
|
||||
let sock = tok_io::net::UnixStream::connect(addr).await?;
|
||||
Ok(Io::with_memory_pool(sock, pool))
|
||||
})
|
||||
}
|
||||
|
||||
/// Convert std TcpStream to tokio's TcpStream
|
||||
pub fn from_tcp_stream(stream: net::TcpStream) -> Result<Io, io::Error> {
|
||||
stream.set_nonblocking(true)?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue