diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-18 11:15:59 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-18 11:15:59 +0100 |
commit | 89af2ef7a9f1ae1de57a1cdbb7ff2da1de7a943c (patch) | |
tree | 7cc0e8dfc811e0c7a2d3f0bc83fc6b1faa37344c /custom_mutators/honggfuzz/honggfuzz.h | |
parent | 5dd35f5281afec0955c08fe9f99e3c83222b7764 (diff) | |
download | afl++-89af2ef7a9f1ae1de57a1cdbb7ff2da1de7a943c.tar.gz |
update honggfuzz custom mutator
Diffstat (limited to 'custom_mutators/honggfuzz/honggfuzz.h')
-rw-r--r-- | custom_mutators/honggfuzz/honggfuzz.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/custom_mutators/honggfuzz/honggfuzz.h b/custom_mutators/honggfuzz/honggfuzz.h index 9d07fdf4..eb6a3f11 100644 --- a/custom_mutators/honggfuzz/honggfuzz.h +++ b/custom_mutators/honggfuzz/honggfuzz.h @@ -208,6 +208,7 @@ typedef struct { const char* crashDir; const char* covDirNew; bool saveUnique; + bool saveSmaller; size_t dynfileqMaxSz; size_t dynfileqCnt; dynfile_t* dynfileqCurrent; @@ -279,9 +280,9 @@ typedef struct { cmpfeedback_t* cmpFeedbackMap; int cmpFeedbackFd; bool cmpFeedback; - const char* blacklistFile; - uint64_t* blacklist; - size_t blacklistCnt; + const char* blocklistFile; + uint64_t* blocklist; + size_t blocklistCnt; bool skipFeedbackOnTimeout; uint64_t maxCov[4]; dynFileMethod_t dynFileMethod; |