pub struct AsyncDevice(/* private fields */);async_io or async_tokio only.Expand description
An async Tun/Tap device wrapper around a Tun/Tap device.
This type does not provide a split method, because this functionality can be achieved by instead wrapping the socket in an Arc.
§Streams
If you need to produce a Stream, you can look at DeviceFramed.
Note: DeviceFramed is only available when the async_framed feature is enabled.
§Examples
use tun_rs::{AsyncDevice, DeviceBuilder};
#[tokio::main]
async fn main() -> std::io::Result<()> {
// Create a TUN device with basic configuration
let dev = DeviceBuilder::new()
.name("tun0")
.mtu(1500)
.ipv4("10.0.0.1", "255.255.255.0", None)
.build_async()?;
// Send a simple packet (Replace with real IP message)
let packet = b"[IP Packet: 10.0.0.1 -> 10.0.0.2] Hello, Async TUN!";
dev.send(packet).await?;
// Receive a packet
let mut buf = [0u8; 1500];
let n = dev.recv(&mut buf).await?;
println!("Received {} bytes: {:?}", n, &buf[..n]);
Ok(())
}Implementations§
Source§impl AsyncDevice
impl AsyncDevice
Sourcepub fn poll_readable(&self, cx: &mut Context<'_>) -> Poll<Result<()>>
pub fn poll_readable(&self, cx: &mut Context<'_>) -> Poll<Result<()>>
Polls the I/O handle for readability.
§Caveats
Note that on multiple calls to a poll_* method in the recv direction, only the
Waker from the Context passed to the most recent call will be scheduled to
receive a wakeup.
§Return value
The function returns:
Poll::Pendingif the device is not ready for reading.Poll::Ready(Ok(()))if the device is ready for reading.Poll::Ready(Err(e))if an error is encountered.
§Errors
This function may encounter any standard I/O error except WouldBlock.
Sourcepub fn poll_recv(
&self,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<Result<usize>>
pub fn poll_recv( &self, cx: &mut Context<'_>, buf: &mut [u8], ) -> Poll<Result<usize>>
Attempts to receive a single packet from the device
§Caveats
Note that on multiple calls to a poll_* method in the recv direction, only the
Waker from the Context passed to the most recent call will be scheduled to
receive a wakeup.
§Return value
The function returns:
Poll::Pendingif the device is not ready to readPoll::Ready(Ok(()))reads databufif the device is readyPoll::Ready(Err(e))if an error is encountered.
§Errors
This function may encounter any standard I/O error except WouldBlock.
Sourcepub fn poll_writable(&self, cx: &mut Context<'_>) -> Poll<Result<()>>
pub fn poll_writable(&self, cx: &mut Context<'_>) -> Poll<Result<()>>
Polls the I/O handle for writability.
§Caveats
Note that on multiple calls to a poll_* method in the send direction,
only the Waker from the Context passed to the most recent call will
be scheduled to receive a wakeup.
§Return value
The function returns:
Poll::Pendingif the device is not ready for writing.Poll::Ready(Ok(()))if the device is ready for writing.Poll::Ready(Err(e))if an error is encountered.
§Errors
This function may encounter any standard I/O error except WouldBlock.
Sourcepub fn poll_send(&self, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>>
pub fn poll_send(&self, cx: &mut Context<'_>, buf: &[u8]) -> Poll<Result<usize>>
Attempts to send packet to the device
§Caveats
Note that on multiple calls to a poll_* method in the send direction,
only the Waker from the Context passed to the most recent call will
be scheduled to receive a wakeup.
§Return value
The function returns:
Poll::Pendingif the device is not available to writePoll::Ready(Ok(n))nis the number of bytes sentPoll::Ready(Err(e))if an error is encountered.
§Errors
This function may encounter any standard I/O error except WouldBlock.
Source§impl AsyncDevice
impl AsyncDevice
pub fn new(device: SyncDevice) -> Result<AsyncDevice>
Sourcepub unsafe fn from_fd(fd: RawFd) -> Result<AsyncDevice>
pub unsafe fn from_fd(fd: RawFd) -> Result<AsyncDevice>
§Safety
This method is safe if the provided fd is valid Construct a AsyncDevice from an existing file descriptor
pub fn into_fd(self) -> Result<RawFd>
Sourcepub async fn readable(&self) -> Result<()>
pub async fn readable(&self) -> Result<()>
Waits for the device to become readable.
This function is usually paired with try_recv().
The function may complete without the device being readable. This is a
false-positive and attempting a try_recv() will return with
io::ErrorKind::WouldBlock.
§Cancel safety
This method is cancel safe. Once a readiness event occurs, the method
will continue to return immediately until the readiness event is
consumed by an attempt to read that fails with WouldBlock or
Poll::Pending.
Sourcepub async fn writable(&self) -> Result<()>
pub async fn writable(&self) -> Result<()>
Waits for the device to become writable.
This function is usually paired with try_send().
The function may complete without the device being writable. This is a
false-positive and attempting a try_send() will return with
io::ErrorKind::WouldBlock.
§Cancel safety
This method is cancel safe. Once a readiness event occurs, the method
will continue to return immediately until the readiness event is
consumed by an attempt to write that fails with WouldBlock or
Poll::Pending.
Sourcepub async fn recv(&self, buf: &mut [u8]) -> Result<usize>
pub async fn recv(&self, buf: &mut [u8]) -> Result<usize>
Receives a single packet from the device. On success, returns the number of bytes read.
The function must be called with valid byte array buf of sufficient
size to hold the message bytes. If a message is too long to fit in the
supplied buffer, excess bytes may be discarded.
Sourcepub fn try_recv(&self, buf: &mut [u8]) -> Result<usize>
pub fn try_recv(&self, buf: &mut [u8]) -> Result<usize>
Tries to receive a single packet from the device. On success, returns the number of bytes read.
This method must be called with valid byte array buf of sufficient size
to hold the message bytes. If a message is too long to fit in the
supplied buffer, excess bytes may be discarded.
When there is no pending data, Err(io::ErrorKind::WouldBlock) is
returned. This function is usually paired with readable().
Sourcepub async fn send(&self, buf: &[u8]) -> Result<usize>
pub async fn send(&self, buf: &[u8]) -> Result<usize>
Send a packet to the device
§Return
On success, the number of bytes sent is returned, otherwise, the encountered error is returned.
Sourcepub fn try_send(&self, buf: &[u8]) -> Result<usize>
pub fn try_send(&self, buf: &[u8]) -> Result<usize>
Tries to send packet to the device.
When the device buffer is full, Err(io::ErrorKind::WouldBlock) is
returned. This function is usually paired with writable().
§Returns
If successful, Ok(n) is returned, where n is the number of bytes
sent. If the device is not ready to send data,
Err(ErrorKind::WouldBlock) is returned.
Sourcepub async fn recv_vectored(&self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
pub async fn recv_vectored(&self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
Receives a packet into multiple buffers (scatter read). Processes single packet per call.
Sourcepub fn try_recv_vectored(&self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
pub fn try_recv_vectored(&self, bufs: &mut [IoSliceMut<'_>]) -> Result<usize>
Non-blocking version of recv_vectored.
Sourcepub async fn send_vectored(&self, bufs: &[IoSlice<'_>]) -> Result<usize>
pub async fn send_vectored(&self, bufs: &[IoSlice<'_>]) -> Result<usize>
Sends multiple buffers as a single packet (gather write).
Sourcepub fn try_send_vectored(&self, bufs: &[IoSlice<'_>]) -> Result<usize>
pub fn try_send_vectored(&self, bufs: &[IoSlice<'_>]) -> Result<usize>
Non-blocking version of send_vectored.
Trait Implementations§
Source§impl AsRawFd for AsyncDevice
impl AsRawFd for AsyncDevice
Source§impl Deref for AsyncDevice
impl Deref for AsyncDevice
Source§impl FromRawFd for AsyncDevice
impl FromRawFd for AsyncDevice
Source§unsafe fn from_raw_fd(fd: RawFd) -> Self
unsafe fn from_raw_fd(fd: RawFd) -> Self
Self from the given raw file
descriptor. Read more