diff options
author | van Hauser <vh@thc.org> | 2024-02-08 10:29:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 10:29:33 +0100 |
commit | 42c663e7c76bd3abee2c6a84dd689bcfea3f59dc (patch) | |
tree | 4cd6a72df75e30763c9868aa8e8e9580a8a4fa5f /include/afl-fuzz.h | |
parent | e0e8645d6c7ecd96815939e19ec75bb8e2bd37df (diff) | |
parent | 956fa95d77ac3cbc43cd44b56bffc605e2a2090e (diff) | |
download | afl++-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.h | 4 |
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. |