Trait smoltcp::phy::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§