From d106f3275cccf27ba3e9c1d567ca8850d0809b31 Mon Sep 17 00:00:00 2001 From: scw00 Date: Thu, 9 Jan 2020 09:20:41 +0800 Subject: [PATCH] Fix closed flag from #6287 --- iocore/net/NetEvent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/net/NetEvent.h b/iocore/net/NetEvent.h index a062e86dbc2..2a0e8aca121 100644 --- a/iocore/net/NetEvent.h +++ b/iocore/net/NetEvent.h @@ -62,7 +62,7 @@ class NetEvent NetState read{}; NetState write{}; - bool closed = false; + int closed = 0; NetHandler *nh = nullptr; ink_hrtime inactivity_timeout_in = 0;