Skip to main content

Fuzzer

Trait Fuzzer 

Source
pub trait Fuzzer {
    // Required method
    fn fuzz_packet(&mut 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(&mut self, packet_data: &mut [u8])

Modify a single packet with fuzzed data.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§