diff options
author | Nils Bars <nils.bars@rub.de> | 2022-10-21 12:13:43 +0200 |
---|---|---|
committer | Nils Bars <nils.bars@rub.de> | 2022-10-21 12:47:00 +0200 |
commit | 7512316b46a25180729ff8c568a6061a0ab19fea (patch) | |
tree | 81db6020d1d6e1c8d8f050fe647a25c79f1dd37d /include/afl-fuzz.h | |
parent | f84ea696606b3dd6ae40006e5efb9f178651e916 (diff) | |
download | afl++-7512316b46a25180729ff8c568a6061a0ab19fea.tar.gz |
Add AFL_FORK_SERVER_KILL_SIGNAL environment variable.
The AFL_FORK_SERVER_KILL_SIGNAL variable allows to configure the signal used to kill the fork server on termination.
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 23c20cc4..73c3b09f 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -393,8 +393,8 @@ typedef struct afl_env_vars { *afl_hang_tmout, *afl_forksrv_init_tmout, *afl_preload, *afl_max_det_extras, *afl_statsd_host, *afl_statsd_port, *afl_crash_exitcode, *afl_statsd_tags_flavor, *afl_testcache_size, - *afl_testcache_entries, *afl_kill_signal, *afl_target_env, - *afl_persistent_record, *afl_exit_on_time; + *afl_testcache_entries, *afl_child_kill_signal, *afl_fsrv_kill_signal, + *afl_target_env, *afl_persistent_record, *afl_exit_on_time; } afl_env_vars_t; @@ -1268,4 +1268,3 @@ void queue_testcase_store_mem(afl_state_t *afl, struct queue_entry *q, u8 *mem); #endif #endif - |