summaryrefslogtreecommitdiff
path: root/honggfuzz.h
diff options
context:
space:
mode:
Diffstat (limited to 'honggfuzz.h')
-rw-r--r--honggfuzz.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/honggfuzz.h b/honggfuzz.h
index a6147c30..d0a219e6 100644
--- a/honggfuzz.h
+++ b/honggfuzz.h
@@ -38,7 +38,7 @@
#include "libhfcommon/util.h"
#define PROG_NAME "honggfuzz"
-#define PROG_VERSION "1.8"
+#define PROG_VERSION "1.9"
/* Name of the template which will be replaced with the proper name of the file */
#define _HF_FILE_PLACEHOLDER "___FILE___"
@@ -149,7 +149,8 @@ typedef enum {
_HF_STATE_UNSET = 0,
_HF_STATE_STATIC = 1,
_HF_STATE_DYNAMIC_DRY_RUN = 2,
- _HF_STATE_DYNAMIC_MAIN = 3,
+ _HF_STATE_DYNAMIC_SWITCH_TO_MAIN = 3,
+ _HF_STATE_DYNAMIC_MAIN = 4,
} fuzzState_t;
struct dynfile_t {
@@ -206,6 +207,7 @@ typedef struct {
bool fuzzStdin;
const char* externalCommand;
const char* postExternalCommand;
+ const char* feedbackMutateCommand;
bool netDriver;
bool persistent;
uint64_t asLimit;