libmicrohttpd

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

commit c20800d66be396695bce32d3746f8e4d8e819d94
parent 176e71e0623dfa7b6182a9d17bef4c262fd7282b
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu,  9 Aug 2007 16:48:31 +0000

fix

Diffstat:
MREADME | 2+-
Msrc/daemon/connection.c | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/README b/README @@ -1,6 +1,6 @@ Run "autoreconf -fi" to create configure. -This is still pre-alpha software. Below we list things that should be +This is still alpha software. Below we list things that should be implemented (in order of importance) before we can claim to be reasonably complete. #XXXX refers to the respective Mantis bug report (or feature request). ARCH indicates that implementing this feature diff --git a/src/daemon/connection.c b/src/daemon/connection.c @@ -1128,6 +1128,7 @@ MHD_connection_handle_write(struct MHD_Connection * connection) { connection->continuePos = 0; connection->responseCode = 0; connection->response = NULL; + connection->headers_received = NULL; connection->headersReceived = 0; connection->headersSent = 0; connection->bodyReceived = 0;