mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-27 23:21:04 +08:00
Lsm
PUBLISHED_FROM=5f465d245bb9ada5202cdd23ddc5b9856df26951
This commit is contained in:
parent
ff4649fe42
commit
8fb58ebbca
@ -8525,7 +8525,8 @@ MG_INTERNAL void mg_send_http_file(struct mg_connection *nc, char *path,
|
||||
mg_http_send_error(nc, 501, NULL);
|
||||
#endif
|
||||
} else if (mg_is_not_modified(hm, &st)) {
|
||||
mg_http_send_error(nc, 304, "Not Modified");
|
||||
/* Note: not using mg_http_send_error in order to keep connection alive */
|
||||
mg_send_head(nc, 304, 0, NULL);
|
||||
} else {
|
||||
mg_http_serve_file2(nc, index_file ? index_file : path, hm, opts);
|
||||
}
|
||||
|
@ -2691,7 +2691,8 @@ MG_INTERNAL void mg_send_http_file(struct mg_connection *nc, char *path,
|
||||
mg_http_send_error(nc, 501, NULL);
|
||||
#endif
|
||||
} else if (mg_is_not_modified(hm, &st)) {
|
||||
mg_http_send_error(nc, 304, "Not Modified");
|
||||
/* Note: not using mg_http_send_error in order to keep connection alive */
|
||||
mg_send_head(nc, 304, 0, NULL);
|
||||
} else {
|
||||
mg_http_serve_file2(nc, index_file ? index_file : path, hm, opts);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user