diff options
author | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-01-30 22:40:09 +0100 |
---|---|---|
committer | Andrea Fioraldi <andreafioraldi@gmail.com> | 2020-01-30 22:40:09 +0100 |
commit | 95a98fb3e805d94a3db82d5da21e9a00a79dbdf2 (patch) | |
tree | 4de4f17f898a4f0632098c9902614217fa2e53eb /include/cmplog.h | |
parent | b8bad5a2273b0cddd0244a7f37c20150a08af475 (diff) | |
download | afl++-95a98fb3e805d94a3db82d5da21e9a00a79dbdf2.tar.gz |
cmplog runtime for LLVM
Diffstat (limited to 'include/cmplog.h')
-rw-r--r-- | include/cmplog.h | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/include/cmplog.h b/include/cmplog.h index d5947226..c02650ee 100644 --- a/include/cmplog.h +++ b/include/cmplog.h @@ -1,5 +1,31 @@ -#ifndef _AFL_REDQUEEN_H -#define _AFL_REDQUEEN_H +/* + american fuzzy lop++ - cmplog header + ------------------------------------ + + Originally written by Michal Zalewski + + Forkserver design by Jann Horn <jannhorn@googlemail.com> + + Now maintained by by Marc Heuse <mh@mh-sec.de>, + Heiko Eißfeldt <heiko.eissfeldt@hexco.de> and + Andrea Fioraldi <andreafioraldi@gmail.com> + + Copyright 2016, 2017 Google Inc. All rights reserved. + Copyright 2019-2020 AFLplusplus Project. All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at: + + http://www.apache.org/licenses/LICENSE-2.0 + + Shared code to handle the shared memory. This is used by the fuzzer + as well the other components like afl-tmin, afl-showmap, etc... + + */ + +#ifndef _AFL_CMPLOG_H +#define _AFL_CMPLOG_H #include "config.h" |