mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Commented code related to "If-Modified-Since" (infinite loop).
This commit is contained in:
parent
cfce869a69
commit
8d6a73646b
3
src/cache/cache.c
vendored
3
src/cache/cache.c
vendored
@ -181,12 +181,13 @@ get_validated_cache_entry(struct uri *uri, enum cache_mode cache_mode)
|
||||
if (!cached || cached->incomplete)
|
||||
return NULL;
|
||||
|
||||
#if 0
|
||||
if (uri->protocol == PROTOCOL_HTTP || uri->protocol == PROTOCOL_HTTPS
|
||||
|| uri->protocol == PROTOCOL_FILE /* CGI */) {
|
||||
if (cached->last_modified && cache_mode == CACHE_MODE_NORMAL)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/* A bit of a gray zone. Delete the entry if the it has the stricktest
|
||||
* cache mode and we don't want the most aggressive mode or we have to
|
||||
|
@ -570,9 +570,9 @@ http_send_header(struct socket *socket)
|
||||
http_end_request(conn, S_OUT_OF_MEM, 0);
|
||||
return;
|
||||
}
|
||||
|
||||
#if 0
|
||||
if (!conn->cached) conn->cached = find_in_cache(uri);
|
||||
|
||||
#endif
|
||||
talking_to_proxy = IS_PROXY_URI(conn->uri) && !conn->socket->ssl;
|
||||
use_connect = connection_is_https_proxy(conn) && !conn->socket->ssl;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user