comparison fuzz/fuzzer-client_mutator.c @ 1760:2406a9987810

Add first try at fuzzing custom mutator
author Matt Johnston <matt@ucc.asn.au>
date Sun, 25 Oct 2020 22:52:36 +0800
parents
children b688c884dad7
comparison
equal deleted inserted replaced
1759:4c5599435084 1760:2406a9987810
1 #include "fuzz.h"
2
3 #include "fuzz-sshpacketmutator.c"
4
5 int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
6 return fuzz_run_client(Data, Size, 0);
7 }
8