From 5cd2d47c5d11b63fc6649d51063d1ae743ba13c4 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Mon, 1 Mar 2021 12:34:53 +0100 Subject: [PATCH] Okay fix fuzzing --- fuzzing/EpollEchoServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzzing/EpollEchoServer.cpp b/fuzzing/EpollEchoServer.cpp index 50860ba..cd16804 100644 --- a/fuzzing/EpollEchoServer.cpp +++ b/fuzzing/EpollEchoServer.cpp @@ -109,7 +109,7 @@ void test() { .drain = [](auto *ws) { /* Check getBufferedAmount here */ }, - .ping = [](auto *ws) { + .ping = [](auto *ws, std::string_view) { /* Here we test send and end while uncorked, by having them send from deferred */ PerSocketData *psd = (PerSocketData *) ws->getUserData(); @@ -121,7 +121,7 @@ void test() { } }); }, - .pong = [](auto *ws) { + .pong = [](auto *ws, std::string_view) { }, .close = [](auto *ws, int code, std::string_view message) {