diff options
author | van Hauser <vh@thc.org> | 2020-06-25 16:51:29 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-06-25 16:51:29 +0200 |
commit | 8178f4dfddfb51f7a3e2f94e67bb9cf7332c7ef1 (patch) | |
tree | 1c72f66dfa99ed06e79d095f7d1fca37e859e88b /include/afl-fuzz.h | |
parent | 4a3305c0074cc6172faac12934bb2ad367d23759 (diff) | |
download | afl++-8178f4dfddfb51f7a3e2f94e67bb9cf7332c7ef1.tar.gz |
remove radamsa, add radamsa custom mutator
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 5dca8fcd..c9f84c61 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -188,10 +188,11 @@ enum { /* 15 */ STAGE_HAVOC, /* 16 */ STAGE_SPLICE, /* 17 */ STAGE_PYTHON, - /* 18 */ STAGE_RADAMSA, - /* 19 */ STAGE_CUSTOM_MUTATOR, - /* 20 */ STAGE_COLORIZATION, - /* 21 */ STAGE_ITS, + /* 18 */ STAGE_CUSTOM_MUTATOR, + /* 19 */ STAGE_COLORIZATION, + /* 20 */ STAGE_ITS, + + STAGE_NUM_MAX }; @@ -427,9 +428,6 @@ typedef struct afl_state { u8 schedule; /* Power schedule (default: EXPLORE)*/ u8 havoc_max_mult; - u8 use_radamsa; - size_t (*radamsa_mutate_ptr)(u8 *, size_t, u8 *, size_t, u32); - u8 skip_deterministic, /* Skip deterministic stages? */ use_splicing, /* Recombine input files? */ non_instrumented_mode, /* Run in non-instrumented mode? */ |