We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9367d4b + 75fc258 commit 779a993Copy full SHA for 779a993
src/timer.c
@@ -50,7 +50,11 @@ void check_connections(struct context *ctx)
50
// the client connection is turned into an intermediate state.
51
// In this state the connection object has not called conn_free so the c->fd is not -1 here.
52
// But it should not call client_eof again.
53
- if (c->eof) continue;
+ if (c->eof) {
54
+ LOG(WARN, "zombie client");
55
+ c = n;
56
+ continue;
57
+ }
58
59
if (c->info->last_active > 0
60
&& now - c->info->last_active > config.client_timeout)
0 commit comments