From 88cf329490cd5fdccaedb23467f9fccb5e4d5b5a Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Thu, 5 Dec 2013 10:47:03 +0000 Subject: [PATCH] Closing connection on 5xx errors --- build/src/mongoose.c | 4 ++++ mongoose.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/build/src/mongoose.c b/build/src/mongoose.c index 8c49ffbbd..bee96cc4a 100644 --- a/build/src/mongoose.c +++ b/build/src/mongoose.c @@ -145,6 +145,10 @@ static void send_http_error(struct mg_connection *conn, int status, suggest_connection_header(conn)); conn->num_bytes_sent += mg_printf(conn, "%s", buf); } + + if (status >= 500) { + conn->must_close = 1; + } } // Return 1 if real file has been found, 0 otherwise diff --git a/mongoose.c b/mongoose.c index 6a4a52793..753092372 100644 --- a/mongoose.c +++ b/mongoose.c @@ -4016,6 +4016,10 @@ static void send_http_error(struct mg_connection *conn, int status, suggest_connection_header(conn)); conn->num_bytes_sent += mg_printf(conn, "%s", buf); } + + if (status >= 500) { + conn->must_close = 1; + } } // Return 1 if real file has been found, 0 otherwise -- GitLab