mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-29 03:14:04 +00:00
httpd: fixed persistent connections for files not containing HTTP header
This commit is contained in:
parent
42dfa71f97
commit
06782c699c
@ -1002,7 +1002,8 @@ get_http_headers(struct http_state *hs, const char *uri)
|
|||||||
add_content_len = 0; /* @todo: get maximum file length from SSI */
|
add_content_len = 0; /* @todo: get maximum file length from SSI */
|
||||||
} else
|
} else
|
||||||
#endif /* LWIP_HTTPD_SSI */
|
#endif /* LWIP_HTTPD_SSI */
|
||||||
if ((hs->handle == NULL) || ((hs->handle->flags & FS_FILE_FLAGS_HEADER_PERSISTENT) == 0)) {
|
if ((hs->handle == NULL) ||
|
||||||
|
((hs->handle->flags & (FS_FILE_FLAGS_HEADER_INCLUDED|FS_FILE_FLAGS_HEADER_PERSISTENT)) == FS_FILE_FLAGS_HEADER_INCLUDED)) {
|
||||||
add_content_len = 0;
|
add_content_len = 0;
|
||||||
}
|
}
|
||||||
if (add_content_len) {
|
if (add_content_len) {
|
||||||
@ -2381,7 +2382,8 @@ http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const cha
|
|||||||
} else
|
} else
|
||||||
#endif /* LWIP_HTTPD_SSI */
|
#endif /* LWIP_HTTPD_SSI */
|
||||||
{
|
{
|
||||||
if ((hs->handle != NULL) && ((hs->handle->flags & FS_FILE_FLAGS_HEADER_PERSISTENT) == 0)) {
|
if ((hs->handle != NULL) &&
|
||||||
|
((hs->handle->flags & (FS_FILE_FLAGS_HEADER_INCLUDED|FS_FILE_FLAGS_HEADER_PERSISTENT)) == FS_FILE_FLAGS_HEADER_INCLUDED)) {
|
||||||
hs->keepalive = 0;
|
hs->keepalive = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user