mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-08-31 11:42:50 +00:00
Sender SDK
This commit is contained in:
parent
fdbefc63e0
commit
afc46f3022
147 changed files with 17638 additions and 114 deletions
|
@ -0,0 +1,8 @@
|
|||
#![no_main]
|
||||
|
||||
use http::parse_request_start_line;
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
let _ = parse_request_start_line(data);
|
||||
});
|
8
sdk/sender/fuzz/fuzz_targets/fuzz_parse_header_map.rs
Normal file
8
sdk/sender/fuzz/fuzz_targets/fuzz_parse_header_map.rs
Normal file
|
@ -0,0 +1,8 @@
|
|||
#![no_main]
|
||||
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
use parsers_common::parse_header_map;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
let _ = parse_header_map(data);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue