cmplog is now better

This commit is contained in:
Andrea Fioraldi
2020-04-14 10:09:03 +02:00
parent 0e1d82dd9f
commit 1fbface656
4 changed files with 76 additions and 25 deletions

View File

@ -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 */