about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-08-04 09:12:27 +0200
committerGitHub <noreply@github.com>2023-08-04 09:12:27 +0200
commit4a9264444f8868cc476c926f48c233709766050d (patch)
tree82f8d4b1feacf026fabda235a301838ff94265da /include
parent0265b39c138e1451accc048d3442a1e15d7ae86c (diff)
parent5d78a6f592fff853ff722f2722a6576b0f565abd (diff)
downloadafl++-4a9264444f8868cc476c926f48c233709766050d.tar.gz
Merge pull request #1823 from schumilo/dev
Nyx mode updates
Diffstat (limited to 'include')
-rw-r--r--include/envs.h1
-rw-r--r--include/forkserver.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/envs.h b/include/envs.h
index edfd06e4..0ef331ae 100644
--- a/include/envs.h
+++ b/include/envs.h
@@ -189,6 +189,7 @@ static char *afl_environment_variables[] = {
     "AFL_MAX_DET_EXTRAS",
     "AFL_NO_X86",  // not really an env but we dont want to warn on it
     "AFL_NOOPT",
+    "AFL_NYX_AUX_SIZE",
     "AFL_PASSTHROUGH",
     "AFL_PATH",
     "AFL_PERFORMANCE_FILE",
diff --git a/include/forkserver.h b/include/forkserver.h
index f5069ce2..c93c6f61 100644
--- a/include/forkserver.h
+++ b/include/forkserver.h
@@ -86,6 +86,7 @@ typedef struct {
                                  uint32_t size);
 
   bool (*nyx_remove_work_dir)(const char *workdir);
+  bool (*nyx_config_set_aux_buffer_size)(void *config, uint32_t aux_buffer_size);
 
 } nyx_plugin_handler_t;