From 993bee49e66a3798b9403416f3536e9152927eeb Mon Sep 17 00:00:00 2001 From: ochafik Date: Fri, 4 Oct 2024 19:04:52 +0100 Subject: [PATCH] add FuzzedStream::is_alive() --- test/fuzzing/server_fuzzer.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/fuzzing/server_fuzzer.cc b/test/fuzzing/server_fuzzer.cc index 3cffbae..f92415f 100644 --- a/test/fuzzing/server_fuzzer.cc +++ b/test/fuzzing/server_fuzzer.cc @@ -27,6 +27,8 @@ public: bool is_writable() const override { return true; } + bool is_alive() const override { return true; } + void get_remote_ip_and_port(std::string &ip, int &port) const override { ip = "127.0.0.1"; port = 8080;