From b315f738081a31cb44f2d8a9a545894576a8d455 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 14 Nov 2020 11:31:27 -0500 Subject: Only send shutdown QUIT and ERROR to registered clients --- bounce.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bounce.c b/bounce.c index 0354bf5..f460d74 100644 --- a/bounce.c +++ b/bounce.c @@ -538,10 +538,13 @@ int main(int argc, char *argv[]) { serverFormat("QUIT :%s\r\n", quit); for (size_t i = binds + 1; i < event.len; ++i) { assert(event.clients[i]); - clientFormat(event.clients[i], ":%s QUIT :%s\r\n", stateEcho(), quit); - clientFormat(event.clients[i], "ERROR :Disconnecting\r\n"); + if (!event.clients[i]->need) { + clientFormat( + event.clients[i], ":%s QUIT :%s\r\nERROR :Disconnecting\r\n", + stateEcho(), quit + ); + } clientFree(event.clients[i]); - close(event.fds[i].fd); } } -- cgit 1.4.1