diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-12-03 14:43:06 +0100 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-12-03 14:43:06 +0100 |
commit | a2e2fae840e9946c7994ac6807bed8496d71af56 (patch) | |
tree | c4162219bb50b7d46ef15120c13841a4b10d873c /include/afl-fuzz.h | |
parent | 0f803c63dfb1dafdef3bfe1b43674157efcd7107 (diff) | |
download | afl++-a2e2fae840e9946c7994ac6807bed8496d71af56.tar.gz |
AFL_CRASH_EXITCODE env var added, u8->bool
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 933af65d..62d76323 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -144,8 +144,8 @@ struct queue_entry { u8 *fname; /* File name for the test case */ u32 len; /* Input length */ - u8 cal_failed, /* Calibration failed? */ - trim_done, /* Trimmed? */ + u8 cal_failed; /* Calibration failed? */ + bool trim_done, /* Trimmed? */ was_fuzzed, /* historical, but needed for MOpt */ passed_det, /* Deterministic stages passed? */ has_new_cov, /* Triggers new coverage? */ @@ -368,7 +368,8 @@ typedef struct afl_env_vars { u8 *afl_tmpdir, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_skip_crashes, *afl_preload, *afl_max_det_extras, *afl_statsd_host, *afl_statsd_port, - *afl_statsd_tags_flavor, *afl_testcache_size, *afl_testcache_entries; + *afl_crash_exitcode, *afl_statsd_tags_flavor, *afl_testcache_size, + *afl_testcache_entries; } afl_env_vars_t; |