libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

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:
Msrc/microhttpd/daemon.c | 1+
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) {