summaryrefslogtreecommitdiffstats
path: root/src/types/tun.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/tun.rs')
-rw-r--r--src/types/tun.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/types/tun.rs b/src/types/tun.rs
index 72caa71..b36089e 100644
--- a/src/types/tun.rs
+++ b/src/types/tun.rs
@@ -1,6 +1,6 @@
use std::error;
-pub trait Tun: Send + Sync {
+pub trait Tun: Send + Sync + 'static {
type Error: error::Error;
/// Returns the MTU of the device
@@ -22,13 +22,13 @@ pub trait Tun: Send + Sync {
///
/// # Arguments
///
- /// - dst: Destination buffer (enough space for MTU bytes + header)
+ /// - buf: Destination buffer (enough space for MTU bytes + header)
/// - offset: Offset for the beginning of the IP packet
///
/// # Returns
///
/// The size of the IP packet (ignoring the header) or an std::error::Error instance:
- fn read(&self, dst: &mut [u8], offset: usize) -> Result<usize, Self::Error>;
+ fn read(&self, buf: &mut [u8], offset: usize) -> Result<usize, Self::Error>;
/// Writes an IP packet to the tunnel device
///