commit cf964cbd0f6ff4eeaef02339506cc8c418b28c3c
parent c900f818ca43368c6e6f27161af7158e51e8fb59
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Sun, 29 Nov 2020 21:35:42 +0300
new_connection_prepare_(): fixed: CORK is never on by default
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
@@ -2458,7 +2458,7 @@ new_connection_prepare_ (struct MHD_Daemon *daemon,
errno = eno;
return MHD_NO;
}
- connection->sk_cork_on = true; /* default is usually ON */
+ connection->sk_cork_on = false;
connection->connection_timeout = daemon->connection_timeout;
if (NULL == (connection->addr = malloc (addrlen)))