mirror of
https://github.com/cesanta/mongoose.git
synced 2025-08-06 13:37:34 +08:00
Sending content-length from put_file()
This commit is contained in:
parent
cf18c932a4
commit
e95dbb90a7
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user