aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2020-07-16 14:32:41 +0200
committerAndrea Fioraldi <andreafioraldi@gmail.com>2020-07-16 14:32:41 +0200
commitc2b04bdf6c596f5d220f27caead20d09452ed42d (patch)
tree602abd8c1a1929aebda3f80665ffe02b435fdd00 /include
parent6513bca07e590024480a95de8c57c9547987032d (diff)
downloadafl++-c2b04bdf6c596f5d220f27caead20d09452ed42d.tar.gz
queue buffer and new splice havoc mutation
Diffstat (limited to 'include')
-rw-r--r--include/afl-fuzz.h4
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 */