Fix lifetimes for unix_connect/unix_connect_in

This commit is contained in:
Nikolay Kim 2021-12-21 16:47:12 +06:00
parent 4cb9b13d85
commit c9271144aa
4 changed files with 26 additions and 5 deletions

View file

@ -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)?;