diff options
author | vanhauser-thc <vh@thc.org> | 2024-06-27 18:51:54 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-06-27 18:51:58 +0200 |
commit | ba7313b521df7a347cd9f96a694cd8caa63b9b41 (patch) | |
tree | bb873333e4a75b3dc667809d4ae6b2709777d3be /include/forkserver.h | |
parent | e2d30641bebfada56f1fdd8cbf16c23a97f96c40 (diff) | |
download | afl++-ba7313b521df7a347cd9f96a694cd8caa63b9b41.tar.gz |
AFL_CUSTOM_MUTATOR_LATE_SEND added
Diffstat (limited to 'include/forkserver.h')
-rw-r--r-- | include/forkserver.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/forkserver.h b/include/forkserver.h index 3fd813a4..6c649528 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -210,6 +210,11 @@ typedef struct afl_forkserver { u8 *persistent_trace_bits; /* Persistent copy of bitmap */ #endif + void *custom_data_ptr; + u8 *custom_input; + u32 custom_input_len; + void (*late_send)(void *, const u8 *, size_t); + } afl_forkserver_t; typedef enum fsrv_run_result { |