Sending content-length from put_file()

This commit is contained in:
Sergey Lyubka 2013-08-14 08:15:42 +01:00
parent cf18c932a4
commit e95dbb90a7

View File

@ -3630,9 +3630,11 @@ static void put_file(struct mg_connection *conn, const char *path) {
conn->status_code = 206;
fseeko(file.fp, r1, SEEK_SET);
}
if (forward_body_data(conn, file.fp, INVALID_SOCKET, NULL)) {
mg_printf(conn, "HTTP/1.1 %d OK\r\n\r\n", conn->status_code);
if (!forward_body_data(conn, file.fp, INVALID_SOCKET, NULL)) {
conn->status_code = 500;
}
mg_printf(conn, "HTTP/1.1 %d OK\r\nContent-Length: 0\r\n\r\n",
conn->status_code);
mg_fclose(&file);
}
}