diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-25 09:15:45 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-25 09:15:54 +0100 |
commit | 5c239451cfd1562ce72a78eefc6886fd76f2c132 (patch) | |
tree | a38d51a50a3fd78377b768bddb03424c960065f4 | |
parent | 35ca51c5a8230f08707844b9bdb7adce0809ba20 (diff) | |
download | afl++-5c239451cfd1562ce72a78eefc6886fd76f2c132.tar.gz |
cmplog finetuning
-rw-r--r-- | custom_mutators/honggfuzz/honggfuzz.h | 2 | ||||
-rw-r--r-- | include/config.h | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/custom_mutators/honggfuzz/honggfuzz.h b/custom_mutators/honggfuzz/honggfuzz.h index eb6a3f11..c80cdd87 100644 --- a/custom_mutators/honggfuzz/honggfuzz.h +++ b/custom_mutators/honggfuzz/honggfuzz.h @@ -39,7 +39,7 @@ #include "libhfcommon/util.h" #define PROG_NAME "honggfuzz" -#define PROG_VERSION "2.3" +#define PROG_VERSION "2.4" /* Name of the template which will be replaced with the proper name of the file */ #define _HF_FILE_PLACEHOLDER "___FILE___" diff --git a/include/config.h b/include/config.h index 6120dcd6..439f4d2f 100644 --- a/include/config.h +++ b/include/config.h @@ -53,11 +53,11 @@ #define CMPLOG_CORPUS_PERCENT 10U /* Number of potential positions from which we decide if cmplog becomes - useless, default 16384 */ -#define CMPLOG_POSITIONS_MAX 16384U + useless, default 8096 */ +#define CMPLOG_POSITIONS_MAX 8096U -/* Maximum allowed fails per CMP value. Default: 96 */ -#define CMPLOG_FAIL_MAX 96 +/* Maximum allowed fails per CMP value. Default: 128 */ +#define CMPLOG_FAIL_MAX 128 /* Now non-cmplog configuration options */ |