smoltcp::phy

Trait Fuzzer

Source
pub trait Fuzzer {
    // Required method
    fn fuzz_packet(&self, packet_data: &mut [u8]);
}
Expand description

Represents a fuzzer. It is expected to replace bytes in the packet with fuzzed data.

Required Methods§

Source

fn fuzz_packet(&self, packet_data: &mut [u8])

Modify a single packet with fuzzed data.

Implementors§