Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(943)

Unified Diff: net/http/http_response_headers.cc

Issue 517043: Http cache: Avoid resuming (and keeping) truncated entries... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add Accept-Ranges:none check Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_response_headers.h ('k') | net/http/http_response_headers_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_headers.cc
===================================================================
--- net/http/http_response_headers.cc (revision 35555)
+++ net/http/http_response_headers.cc (working copy)
@@ -1001,6 +1001,32 @@
return keep_alive;
}
+bool HttpResponseHeaders::HasStrongValidators() const {
+ std::string etag_value;
+ EnumerateHeader(NULL, "etag", &etag_value);
+ if (!etag_value.empty()) {
+ size_t slash = etag_value.find('/');
+ if (slash == std::string::npos || slash == 0)
+ return true;
+
+ std::string::const_iterator i = etag_value.begin();
+ std::string::const_iterator j = etag_value.begin() + slash;
+ HttpUtil::TrimLWS(&i, &j);
+ if (!LowerCaseEqualsASCII(i, j, "w"))
+ return true;
+ }
+
+ Time last_modified;
+ if (!GetLastModifiedValue(&last_modified))
+ return false;
+
+ Time date;
+ if (!GetDateValue(&date))
+ return false;
+
+ return ((date - last_modified).InSeconds() >= 60);
+}
+
// From RFC 2616:
// Content-Length = "Content-Length" ":" 1*DIGIT
int64 HttpResponseHeaders::GetContentLength() const {
« no previous file with comments | « net/http/http_response_headers.h ('k') | net/http/http_response_headers_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698