aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/http/fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/http/fuzzer.c')
-rw-r--r--test/core/http/fuzzer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/core/http/fuzzer.c b/test/core/http/fuzzer.c
index 7e4f4eb993..c3c634f281 100644
--- a/test/core/http/fuzzer.c
+++ b/test/core/http/fuzzer.c
@@ -31,6 +31,7 @@
*
*/
+#include <stdbool.h>
#include <stdint.h>
#include <string.h>
@@ -38,6 +39,9 @@
#include "src/core/lib/http/parser.h"
+bool squelch = true;
+bool leak_check = true;
+
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
grpc_http_parser parser;
grpc_http_parser_init(&parser);