about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2024-02-08 10:29:33 +0100
committerGitHub <noreply@github.com>2024-02-08 10:29:33 +0100
commit42c663e7c76bd3abee2c6a84dd689bcfea3f59dc (patch)
tree4cd6a72df75e30763c9868aa8e8e9580a8a4fa5f /include/afl-fuzz.h
parente0e8645d6c7ecd96815939e19ec75bb8e2bd37df (diff)
parent956fa95d77ac3cbc43cd44b56bffc605e2a2090e (diff)
downloadafl++-42c663e7c76bd3abee2c6a84dd689bcfea3f59dc.tar.gz
Merge pull request #1965 from CodeLinaro/stateful
replay mode support
Diffstat (limited to 'include/afl-fuzz.h')
-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 c24f39e2..be86910e 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -124,6 +124,10 @@
   #define CASE_PREFIX "id_"
 #endif                                                    /* ^!SIMPLE_FILES */
 
+#ifdef AFL_PERSISTENT_RECORD
+  #define RECORD_PREFIX "RECORD:"
+#endif
+
 #define STAGE_BUF_SIZE (64)  /* usable size for stage name buf in afl_state */
 
 // Little helper to access the ptr to afl->##name_buf - for use in afl_realloc.