diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2020-03-17 02:03:16 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2020-04-06 13:58:51 +0000 |
commit | cdfb8e7afa7648405dd6b957f47b1c7ab566a076 (patch) | |
tree | 037b12555949782db2977d8626ff4c5bf7b9c363 /src/httpserver.h | |
parent | 299544f9c5375810f3b4f70e68d2340fe689108a (diff) |
tests: Add fuzzing harness for HTTPRequest, libevent's evhttp and related functions
Diffstat (limited to 'src/httpserver.h')
-rw-r--r-- | src/httpserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpserver.h b/src/httpserver.h index 46820e6aee..c25ea7a8fb 100644 --- a/src/httpserver.h +++ b/src/httpserver.h @@ -60,7 +60,7 @@ private: bool replySent; public: - explicit HTTPRequest(struct evhttp_request* req); + explicit HTTPRequest(struct evhttp_request* req, bool replySent = false); ~HTTPRequest(); enum RequestMethod { |