Kaynağa Gözat

Expose underlying device from PcapWriter

bdbai 3 yıl önce
ebeveyn
işleme
c4a88d7a14
1 değiştirilmiş dosya ile 15 ekleme ve 0 silme
  1. 15 0
      src/phy/pcap_writer.rs

+ 15 - 0
src/phy/pcap_writer.rs

@@ -143,6 +143,21 @@ impl<D: for<'a> Device<'a>, S: PcapSink + Clone> PcapWriter<D, S> {
         sink.global_header(link_type);
         PcapWriter { lower, sink, mode }
     }
+
+    /// Get a reference to the underlying device.
+    ///
+    /// Even if the device offers reading through a standard reference, it is inadvisable to
+    /// directly read from the device as doing so will circumvent the packet capture.
+    pub fn get_ref(&self) -> &D {
+        &self.lower
+    }
+
+    /// Get a mutable reference to the underlying device.
+    ///
+    /// It is inadvisable to directly read from the device as doing so will circumvent the packet capture.
+    pub fn get_mut(&mut self) -> &mut D {
+        &mut self.lower
+    }
 }
 
 impl<'a, D, S> Device<'a> for PcapWriter<D, S>