diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-07-16 14:32:41 +0200 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-07-16 14:32:41 +0200 |
commit | c2b04bdf6c596f5d220f27caead20d09452ed42d (patch) | |
tree | 602abd8c1a1929aebda3f80665ffe02b435fdd00 /include | |
parent | 6513bca07e590024480a95de8c57c9547987032d (diff) | |
download | afl++-c2b04bdf6c596f5d220f27caead20d09452ed42d.tar.gz |
queue buffer and new splice havoc mutation
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index c9f84c61..adab8155 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -546,6 +546,10 @@ typedef struct afl_state { *queue_top, /* Top of the list */ *q_prev100; /* Previous 100 marker */ + // growing buf + struct queue_entry **queue_buf; + size_t queue_size; + struct queue_entry **top_rated; /* Top entries for bitmap bytes */ struct extra_data *extras; /* Extra tokens to fuzz with */ |