1 2 3 4 5 6 7 8
#![no_main] use libfuzzer_sys::fuzz_target; use vrrpd::vrrpv2; fuzz_target!(|data: &[u8]| { let _ = vrrpv2::from_bytes(data); });