simp/fuzz/fuzz_targets/smtp-parser.rs

9 lines
130 B
Rust
Raw Permalink Normal View History

2020-11-09 09:14:59 +00:00
#![no_main]
use libfuzzer_sys::fuzz_target;
use smtp::RawCommand;
fuzz_target!(|data: &[u8]| {
RawCommand::parse(data);
});