mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Add io-uring driver (#515)
This commit is contained in:
parent
47afec7351
commit
60a686b2f6
38 changed files with 1700 additions and 277 deletions
|
@ -1,4 +1,4 @@
|
|||
use std::{future::Future, io};
|
||||
use std::io;
|
||||
|
||||
use socket2::{SockAddr, Socket as Socket2};
|
||||
|
||||
|
@ -27,12 +27,6 @@ impl UnixStream {
|
|||
Self { inner }
|
||||
}
|
||||
|
||||
/// Close the socket. If the returned future is dropped before polling, the
|
||||
/// socket won't be closed.
|
||||
pub fn close(self) -> impl Future<Output = io::Result<()>> {
|
||||
self.inner.close()
|
||||
}
|
||||
|
||||
/// Returns the socket path of the remote peer of this connection.
|
||||
pub fn peer_addr(&self) -> io::Result<SockAddr> {
|
||||
#[allow(unused_mut)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue