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§
Sourcefn fuzz_packet(&self, packet_data: &mut [u8])
fn fuzz_packet(&self, packet_data: &mut [u8])
Modify a single packet with fuzzed data.