Home
last modified time | relevance | path

Searched refs:PcapSink (Results 1 – 4 of 4) sorted by relevance

/smoltcp-0.9.1/src/phy/
Dpcap_writer.rs35 pub trait PcapSink { interface
95 impl<T: Write> PcapSink for T {
121 S: PcapSink,
128 impl<D: Device, S: PcapSink> PcapWriter<D, S> {
166 S: PcapSink,
214 pub struct RxToken<'a, Rx: phy::RxToken, S: PcapSink> {
221 impl<'a, Rx: phy::RxToken, S: PcapSink> phy::RxToken for RxToken<'a, Rx, S> {
237 pub struct TxToken<'a, Tx: phy::TxToken, S: PcapSink> {
244 impl<'a, Tx: phy::TxToken, S: PcapSink> phy::TxToken for TxToken<'a, Tx, S> {
Dmod.rs123 pub use self::pcap_writer::{PcapLinkType, PcapMode, PcapSink, PcapWriter};
/smoltcp-0.9.1/utils/
Dpacket2pcap.rs2 use smoltcp::phy::{PcapLinkType, PcapSink};
20 PcapSink::global_header(&mut pcap_file, link_type); in convert()
21 PcapSink::packet(&mut pcap_file, Instant::from_millis(0), &packet[..]); in convert()
/smoltcp-0.9.1/
DCHANGELOG.md129 - Simplify PcapSink trait ([#535](https://github.com/smoltcp-rs/smoltcp/pull/535))