pub trait Fuzzer {
    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

Modify a single packet with fuzzed data.

Implementors