diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-04-14 10:09:03 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-04-14 10:09:03 +0200 |
commit | 1fbface656ae4f64fc8643def840fa488098e580 (patch) | |
tree | e4e57d2c4a280b3f31f971e7ce0dea4571bb6b2f /include | |
parent | 0e1d82dd9f5cfe48b294e876924acea2f5094f01 (diff) | |
download | afl++-1fbface656ae4f64fc8643def840fa488098e580.tar.gz |
cmplog is now better
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 620f5062..4e2deaa3 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -316,6 +316,10 @@ typedef struct afl_env_vars { } afl_env_vars_t; +struct afl_pass_stat { + u8 total; u8 faileds; +}; + typedef struct afl_state { /* Position of this state in the global states list */ @@ -540,6 +544,8 @@ typedef struct afl_state { /* cmplog forkserver ids */ s32 cmplog_fsrv_ctl_fd, cmplog_fsrv_st_fd; + + struct afl_pass_stat* pass_stats; u8 describe_op_buf_256[256]; /* describe_op will use this to return a string up to 256 */ |