#![no_main] use libfuzzer_sys::fuzz_target; use vrrpd::vrrpv2; fuzz_target!(|data: &[u8]| { let _ = vrrpv2::from_bytes(data); });