From ca5f208423d42bc6d9a8601d5f9a6ffae0119f40 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 14 Apr 2013 23:41:22 +0200 Subject: [PATCH 1/1] Small microoptimization in do_work(). --- server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.cpp b/server.cpp index 730bb44..a11b55f 100644 --- a/server.cpp +++ b/server.cpp @@ -400,7 +400,7 @@ sending_data_again: // We don't have any more data for this client, so put it to sleep. // This is postcondition #3. stream->put_client_to_sleep(client); - } else if (more_data) { + } else if (more_data && ret == bytes_to_send) { goto sending_data_again; } break; -- 2.39.2