diff options
author | van Hauser <vh@thc.org> | 2020-04-29 15:18:03 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-29 15:18:03 +0200 |
commit | bc2e65e4821ef4b8fbc33be6c705adfa1c32e02f (patch) | |
tree | d3fa1ac353f9ddc64da265ecd56a29a77b84a7d2 /examples/afl-proxy/afl-proxy.c | |
parent | ce2814967df3aac7a707b5f7e458b45eec992149 (diff) | |
download | afl++-bc2e65e4821ef4b8fbc33be6c705adfa1c32e02f.tar.gz |
added afl_network_proxy
Diffstat (limited to 'examples/afl-proxy/afl-proxy.c')
-rw-r--r-- | examples/afl-proxy/afl-proxy.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/examples/afl-proxy/afl-proxy.c b/examples/afl-proxy/afl-proxy.c index 7d25421d..eea03549 100644 --- a/examples/afl-proxy/afl-proxy.c +++ b/examples/afl-proxy/afl-proxy.c @@ -163,14 +163,7 @@ static void __afl_map_shm(void) { static void __afl_start_forkserver(void) { u8 tmp[4] = {0, 0, 0, 0}; - s32 child_pid; u32 status = 0; - u32 already_read_first = 0; - u32 was_killed; - - u8 child_stopped = 0; - - void (*old_sigchld_handler)(int) = 0; // = signal(SIGCHLD, SIG_DFL); if (__afl_map_size <= FS_OPT_MAX_MAPSIZE) status |= (FS_OPT_SET_MAPSIZE(__afl_map_size) | FS_OPT_MAPSIZE); @@ -239,3 +232,4 @@ int main(int argc, char *argv[]) { return 0; } + |