diff options
author | vanhauser-thc <vh@thc.org> | 2023-04-05 12:12:05 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-04-05 12:12:05 +0200 |
commit | a74561b0e7434282ad214ca634b5c19c2f345e8e (patch) | |
tree | 807cf2326da7641ef5c9623c6300763d336adf4b /include/afl-fuzz.h | |
parent | e313180e4d3f7ba44b773e43af40d4af21088576 (diff) | |
download | afl++-a74561b0e7434282ad214ca634b5c19c2f345e8e.tar.gz |
implement switch mode
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 6573eabf..23a04f42 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -491,8 +491,7 @@ typedef struct afl_state { *infoexec; /* Command to execute on a new crash */ u32 hang_tmout, /* Timeout used for hang det (ms) */ - stats_update_freq, /* Stats update frequency (execs) */ - switch_fuzz_mode; /* auto or fixed fuzz mode */ + stats_update_freq; /* Stats update frequency (execs) */ u8 havoc_stack_pow2, /* HAVOC_STACK_POW2 */ no_unlink, /* do not unlink cur_input */ @@ -592,7 +591,8 @@ typedef struct afl_state { last_hang_time, /* Time for most recent hang (ms) */ longest_find_time, /* Longest time taken for a find */ exit_on_time, /* Delay to exit if no new paths */ - sync_time; /* Sync time (ms) */ + sync_time, /* Sync time (ms) */ + switch_fuzz_mode; /* auto or fixed fuzz mode */ u32 slowest_exec_ms, /* Slowest testcase non hang in ms */ subseq_tmouts; /* Number of timeouts in a row */ |