commit feed888b908b2929112525d18a9199cc4af8fdca
parent 67de676736d3170a7a6e6465b8178115b7392b54
Author: Christian Grothoff <christian@grothoff.org>
Date: Thu, 5 Mar 2020 17:16:06 +0100
default is CORK is ON (at least on OS X)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
@@ -2510,6 +2510,7 @@ internal_add_connection (struct MHD_Daemon *daemon,
errno = eno;
return MHD_NO;
}
+ connection->sk_cork_on = true; /* default is usually ON */
connection->pool = MHD_pool_create (daemon->pool_size);
if (NULL == connection->pool)
{