diff --git a/build/src/mongoose.c b/build/src/mongoose.c index ffa0d521ae506c8b6b042718691f9207a694085c..a961010ad21623984234d1a140568e3505ef434a 100644 --- a/build/src/mongoose.c +++ b/build/src/mongoose.c @@ -126,11 +126,13 @@ static void send_http_error(struct mg_connection *conn, int status, } DEBUG_TRACE(("[%s]", buf)); - mg_printf(conn, "HTTP/1.1 %d %s\r\n" - "Content-Length: %d\r\n" - "Connection: %s\r\n\r\n", status, reason, len, - suggest_connection_header(conn)); - conn->num_bytes_sent += mg_printf(conn, "%s", buf); + if (call_user(MG_HTTP_ERROR, conn, (void *) (long) status) == 0) { + mg_printf(conn, "HTTP/1.1 %d %s\r\n" + "Content-Length: %d\r\n" + "Connection: %s\r\n\r\n", status, reason, len, + suggest_connection_header(conn)); + conn->num_bytes_sent += mg_printf(conn, "%s", buf); + } } // Write data to the IO channel - opened file descriptor, socket or SSL diff --git a/mongoose.c b/mongoose.c index 4f6d3f0df373b8ec8a61a9fea1117fc1ce8e6e34..2cb3bf4bedbc0c85bb620308a0e60c21b4494dcb 100644 --- a/mongoose.c +++ b/mongoose.c @@ -2293,11 +2293,13 @@ static void send_http_error(struct mg_connection *conn, int status, } DEBUG_TRACE(("[%s]", buf)); - mg_printf(conn, "HTTP/1.1 %d %s\r\n" - "Content-Length: %d\r\n" - "Connection: %s\r\n\r\n", status, reason, len, - suggest_connection_header(conn)); - conn->num_bytes_sent += mg_printf(conn, "%s", buf); + if (call_user(MG_HTTP_ERROR, conn, (void *) (long) status) == 0) { + mg_printf(conn, "HTTP/1.1 %d %s\r\n" + "Content-Length: %d\r\n" + "Connection: %s\r\n\r\n", status, reason, len, + suggest_connection_header(conn)); + conn->num_bytes_sent += mg_printf(conn, "%s", buf); + } } // Write data to the IO channel - opened file descriptor, socket or SSL @@ -5022,7 +5024,7 @@ static void process_new_connection(struct mg_connection *conn) { if (ebuf[0] == '\0') { handle_request(conn); - call_user(MG_REQUEST_END, conn, (void *) (long) conn->status_code); + call_user(MG_REQUEST_END, conn, (void *) conn->status_code); log_access(conn); } if (ri->remote_user != NULL) {