diff options
author | h1994st <h1994st@gmail.com> | 2020-03-03 19:48:13 -0500 |
---|---|---|
committer | h1994st <h1994st@gmail.com> | 2020-03-03 19:48:13 -0500 |
commit | df465216583afcc0e65e4468e6383afd7a688ddc (patch) | |
tree | 84ee509f58fc76aee6f4ba9d0aa9e44f256f50e8 /src/afl-fuzz-globals.c | |
parent | 90506479e7de57c97d97958c61b2513009687d90 (diff) | |
download | afl++-df465216583afcc0e65e4468e6383afd7a688ddc.tar.gz |
Finish refactoring APIs for the custom mutator and Python module
- Remove AFL_PYTHON_ONLY (env) and python_only (variable) - Unify fuzz API of the custom mutator and Python module - Merge the custom mutator into the old python_stage, which is now renamed to custom_mutator_stage
Diffstat (limited to 'src/afl-fuzz-globals.c')
-rw-r--r-- | src/afl-fuzz-globals.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afl-fuzz-globals.c b/src/afl-fuzz-globals.c index a054499f..87418753 100644 --- a/src/afl-fuzz-globals.c +++ b/src/afl-fuzz-globals.c @@ -88,8 +88,7 @@ u8 cal_cycles = CAL_CYCLES, /* Calibration cycles defaults */ no_unlink, /* do not unlink cur_input */ use_stdin = 1, /* use stdin for sending data */ be_quiet, /* is AFL_QUIET set? */ - custom_only, /* Custom mutator only mode */ - python_only; /* Python-only mode */ + custom_only; /* Custom mutator only mode */ u32 stats_update_freq = 1; /* Stats update frequency (execs) */ |