1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/http/http_response_info.h"
#include <optional>
#include "base/logging.h"
#include "base/numerics/safe_conversions.h"
#include "base/pickle.h"
#include "base/time/time.h"
#include "net/base/net_errors.h"
#include "net/cert/sct_status_flags.h"
#include "net/cert/signed_certificate_timestamp.h"
#include "net/cert/x509_certificate.h"
#include "net/http/http_response_headers.h"
#include "net/ssl/ssl_cert_request_info.h"
#include "net/ssl/ssl_connection_status_flags.h"
#include "net/third_party/quiche/src/quiche/quic/core/quic_versions.h"
#include "third_party/boringssl/src/include/openssl/ssl.h"
using base::Time;
namespace net {
namespace {
bool KeyExchangeGroupIsValid(int ssl_connection_status) {
// TLS 1.3 and later always treat the field correctly.
if (SSLConnectionStatusToVersion(ssl_connection_status) >=
SSL_CONNECTION_VERSION_TLS1_3) {
return true;
}
// Prior to TLS 1.3, only ECDHE ciphers have groups.
const SSL_CIPHER* cipher = SSL_get_cipher_by_value(
SSLConnectionStatusToCipherSuite(ssl_connection_status));
return cipher && SSL_CIPHER_get_kx_nid(cipher) == NID_kx_ecdhe;
}
} // namespace
// These values can be bit-wise combined to form the flags field of the
// serialized HttpResponseInfo.
enum {
// The version of the response info used when persisting response info.
RESPONSE_INFO_VERSION = 3,
// The minimum version supported for deserializing response info.
RESPONSE_INFO_MINIMUM_VERSION = 3,
// We reserve up to 8 bits for the version number.
RESPONSE_INFO_VERSION_MASK = 0xFF,
// This bit is set if the response info has a cert at the end.
// Version 1 serialized only the end-entity certificate, while subsequent
// versions include the available certificate chain.
RESPONSE_INFO_HAS_CERT = 1 << 8,
// This bit was historically set if the response info had a security-bits
// field (security strength, in bits, of the SSL connection) at the end.
RESPONSE_INFO_HAS_SECURITY_BITS = 1 << 9,
// This bit is set if the response info has a cert status at the end.
RESPONSE_INFO_HAS_CERT_STATUS = 1 << 10,
// This bit is set if the response info has vary header data.
RESPONSE_INFO_HAS_VARY_DATA = 1 << 11,
// This bit is set if the request was cancelled before completion.
RESPONSE_INFO_TRUNCATED = 1 << 12,
// This bit is set if the response was received via SPDY.
RESPONSE_INFO_WAS_SPDY = 1 << 13,
// This bit is set if the request has ALPN negotiated.
RESPONSE_INFO_WAS_ALPN = 1 << 14,
// This bit is set if the request was fetched via an explicit proxy.
// This bit is deprecated.
RESPONSE_INFO_WAS_PROXY = 1 << 15,
// This bit is set if the response info has an SSL connection status field.
// This contains the ciphersuite used to fetch the resource as well as the
// protocol version, compression method and whether SSLv3 fallback was used.
RESPONSE_INFO_HAS_SSL_CONNECTION_STATUS = 1 << 16,
// This bit is set if the response info has protocol version.
RESPONSE_INFO_HAS_ALPN_NEGOTIATED_PROTOCOL = 1 << 17,
// This bit is set if the response info has connection info.
RESPONSE_INFO_HAS_CONNECTION_INFO = 1 << 18,
// This bit is set if the request has http authentication.
RESPONSE_INFO_USE_HTTP_AUTHENTICATION = 1 << 19,
// This bit is set if ssl_info has SCTs.
RESPONSE_INFO_HAS_SIGNED_CERTIFICATE_TIMESTAMPS = 1 << 20,
RESPONSE_INFO_UNUSED_SINCE_PREFETCH = 1 << 21,
// This bit is set if the response has a key exchange group.
RESPONSE_INFO_HAS_KEY_EXCHANGE_GROUP = 1 << 22,
// This bit is set if ssl_info recorded that PKP was bypassed due to a local
// trust anchor.
RESPONSE_INFO_PKP_BYPASSED = 1 << 23,
// This bit is set if stale_revalidate_time is stored.
RESPONSE_INFO_HAS_STALENESS = 1 << 24,
// This bit is set if the response has a peer signature algorithm.
RESPONSE_INFO_HAS_PEER_SIGNATURE_ALGORITHM = 1 << 25,
// This bit is set if the response is a prefetch whose reuse should be
// restricted in some way.
RESPONSE_INFO_RESTRICTED_PREFETCH = 1 << 26,
// This bit is set if the response has a nonempty `dns_aliases` entry.
RESPONSE_INFO_HAS_DNS_ALIASES = 1 << 27,
// This bit is now unused. It may be set on existing entries. Previously it
// was set for an entry in the single-keyed cache that had been marked
// unusable due to the cache transparency checksum not matching.
RESPONSE_INFO_UNUSED_WAS_SINGLE_KEYED_CACHE_ENTRY_UNUSABLE = 1 << 28,
// This bit is set if the response has `encrypted_client_hello` set.
RESPONSE_INFO_ENCRYPTED_CLIENT_HELLO = 1 << 29,
// This bit is set if the response has `browser_run_id` set.
RESPONSE_INFO_BROWSER_RUN_ID = 1 << 30,
// This bit is set if the response has extra bit set.
RESPONSE_INFO_HAS_EXTRA_FLAGS = 1 << 31,
};
// These values can be bit-wise combined to form the extra flags field of the
// serialized HttpResponseInfo.
enum {
// This bit is set if the request usd a shared dictionary for decoding its
// body.
RESPONSE_EXTRA_INFO_DID_USE_SHARED_DICTIONARY = 1,
// This bit is set if the response has valid `proxy_chain`.
RESPONSE_EXTRA_INFO_HAS_PROXY_CHAIN = 1 << 1,
// This bit is set if the response has original_response_time.
RESPONSE_EXTRA_INFO_HAS_ORIGINAL_RESPONSE_TIME = 1 << 2
};
HttpResponseInfo::HttpResponseInfo() = default;
HttpResponseInfo::HttpResponseInfo(const HttpResponseInfo& rhs) = default;
HttpResponseInfo::~HttpResponseInfo() = default;
HttpResponseInfo& HttpResponseInfo::operator=(const HttpResponseInfo& rhs) =
default;
bool HttpResponseInfo::InitFromPickle(const base::Pickle& pickle,
bool* response_truncated) {
base::PickleIterator iter(pickle);
// Read flags and verify version
int flags;
int extra_flags = 0;
if (!iter.ReadInt(&flags))
return false;
if (flags & RESPONSE_INFO_HAS_EXTRA_FLAGS) {
if (!iter.ReadInt(&extra_flags)) {
return false;
}
}
int version = flags & RESPONSE_INFO_VERSION_MASK;
if (version < RESPONSE_INFO_MINIMUM_VERSION ||
version > RESPONSE_INFO_VERSION) {
DLOG(ERROR) << "unexpected response info version: " << version;
return false;
}
// Read request-time
int64_t time_val;
if (!iter.ReadInt64(&time_val))
return false;
request_time = Time::FromInternalValue(time_val);
was_cached = true; // Set status to show cache resurrection.
// Read response-time
if (!iter.ReadInt64(&time_val))
return false;
response_time = Time::FromInternalValue(time_val);
// Read original-response-time
if ((extra_flags & RESPONSE_EXTRA_INFO_HAS_ORIGINAL_RESPONSE_TIME) != 0) {
if (!iter.ReadInt64(&time_val)) {
return false;
}
original_response_time = Time::FromInternalValue(time_val);
}
// Read response-headers
headers = base::MakeRefCounted<HttpResponseHeaders>(&iter);
if (headers->response_code() == -1)
return false;
// Read ssl-info
if (flags & RESPONSE_INFO_HAS_CERT) {
ssl_info.cert = X509Certificate::CreateFromPickle(&iter);
if (!ssl_info.cert.get())
return false;
}
if (flags & RESPONSE_INFO_HAS_CERT_STATUS) {
CertStatus cert_status;
if (!iter.ReadUInt32(&cert_status))
return false;
ssl_info.cert_status = cert_status;
}
if (flags & RESPONSE_INFO_HAS_SECURITY_BITS) {
// The security_bits field has been removed from ssl_info. For backwards
// compatibility, we should still read the value out of iter.
int security_bits;
if (!iter.ReadInt(&security_bits))
return false;
}
if (flags & RESPONSE_INFO_HAS_SSL_CONNECTION_STATUS) {
int connection_status;
if (!iter.ReadInt(&connection_status))
return false;
// SSLv3 is gone, so drop cached entries that were loaded over SSLv3.
if (SSLConnectionStatusToVersion(connection_status) ==
SSL_CONNECTION_VERSION_SSL3) {
return false;
}
ssl_info.connection_status = connection_status;
}
// Signed Certificate Timestamps are no longer persisted to the cache, so
// ignore them when reading them out.
if (flags & RESPONSE_INFO_HAS_SIGNED_CERTIFICATE_TIMESTAMPS) {
int num_scts;
if (!iter.ReadInt(&num_scts))
return false;
for (int i = 0; i < num_scts; ++i) {
scoped_refptr<ct::SignedCertificateTimestamp> sct(
ct::SignedCertificateTimestamp::CreateFromPickle(&iter));
uint16_t status;
if (!sct.get() || !iter.ReadUInt16(&status))
return false;
}
}
// Read vary-data
if (flags & RESPONSE_INFO_HAS_VARY_DATA) {
if (!vary_data.InitFromPickle(&iter))
return false;
}
// Read socket_address.
std::string socket_address_host;
if (!iter.ReadString(&socket_address_host))
return false;
// If the host was written, we always expect the port to follow.
uint16_t socket_address_port;
if (!iter.ReadUInt16(&socket_address_port))
return false;
IPAddress ip_address;
if (ip_address.AssignFromIPLiteral(socket_address_host)) {
remote_endpoint = IPEndPoint(ip_address, socket_address_port);
} else if (ParseURLHostnameToAddress(socket_address_host, &ip_address)) {
remote_endpoint = IPEndPoint(ip_address, socket_address_port);
}
// Read protocol-version.
if (flags & RESPONSE_INFO_HAS_ALPN_NEGOTIATED_PROTOCOL) {
if (!iter.ReadString(&alpn_negotiated_protocol))
return false;
}
// Read connection info.
if (flags & RESPONSE_INFO_HAS_CONNECTION_INFO) {
int value;
if (!iter.ReadInt(&value))
return false;
if (value > static_cast<int>(HttpConnectionInfo::kUNKNOWN) &&
value <= static_cast<int>(HttpConnectionInfo::kMaxValue)) {
connection_info = static_cast<HttpConnectionInfo>(value);
}
}
// Read key_exchange_group
if (flags & RESPONSE_INFO_HAS_KEY_EXCHANGE_GROUP) {
int key_exchange_group;
if (!iter.ReadInt(&key_exchange_group))
return false;
// Historically, the key_exchange_group field was key_exchange_info which
// conflated a number of different values based on the cipher suite, so some
// values must be discarded. See https://crbug.com/639421.
if (KeyExchangeGroupIsValid(ssl_info.connection_status))
ssl_info.key_exchange_group = key_exchange_group;
}
// Read staleness time.
if (flags & RESPONSE_INFO_HAS_STALENESS) {
if (!iter.ReadInt64(&time_val))
return false;
stale_revalidate_timeout = base::Time() + base::Microseconds(time_val);
}
was_fetched_via_spdy = (flags & RESPONSE_INFO_WAS_SPDY) != 0;
was_alpn_negotiated = (flags & RESPONSE_INFO_WAS_ALPN) != 0;
*response_truncated = (flags & RESPONSE_INFO_TRUNCATED) != 0;
did_use_http_auth = (flags & RESPONSE_INFO_USE_HTTP_AUTHENTICATION) != 0;
unused_since_prefetch = (flags & RESPONSE_INFO_UNUSED_SINCE_PREFETCH) != 0;
restricted_prefetch = (flags & RESPONSE_INFO_RESTRICTED_PREFETCH) != 0;
// RESPONSE_INFO_UNUSED_WAS_SINGLE_KEYED_CACHE_ENTRY_UNUSABLE is unused.
ssl_info.pkp_bypassed = (flags & RESPONSE_INFO_PKP_BYPASSED) != 0;
// Read peer_signature_algorithm.
if (flags & RESPONSE_INFO_HAS_PEER_SIGNATURE_ALGORITHM) {
int peer_signature_algorithm;
if (!iter.ReadInt(&peer_signature_algorithm) ||
!base::IsValueInRangeForNumericType<uint16_t>(
peer_signature_algorithm)) {
return false;
}
ssl_info.peer_signature_algorithm =
base::checked_cast<uint16_t>(peer_signature_algorithm);
}
// Read DNS aliases.
if (flags & RESPONSE_INFO_HAS_DNS_ALIASES) {
int num_aliases;
if (!iter.ReadInt(&num_aliases))
return false;
std::string alias;
for (int i = 0; i < num_aliases; i++) {
if (!iter.ReadString(&alias))
return false;
dns_aliases.insert(alias);
}
}
ssl_info.encrypted_client_hello =
(flags & RESPONSE_INFO_ENCRYPTED_CLIENT_HELLO) != 0;
// Read browser_run_id.
if (flags & RESPONSE_INFO_BROWSER_RUN_ID) {
int64_t id;
if (!iter.ReadInt64(&id))
return false;
browser_run_id = std::make_optional(id);
}
did_use_shared_dictionary =
(extra_flags & RESPONSE_EXTRA_INFO_DID_USE_SHARED_DICTIONARY) != 0;
if (extra_flags & RESPONSE_EXTRA_INFO_HAS_PROXY_CHAIN) {
if (!proxy_chain.InitFromPickle(&iter)) {
return false;
}
}
return true;
}
std::unique_ptr<base::Pickle> HttpResponseInfo::MakePickle(
bool skip_transient_headers,
bool response_truncated) const {
auto pickle = std::make_unique<base::Pickle>();
// Pre-reserve memory for the Pickle contents to reduce allocations and
// copies. This doesn't affect the size of the data that is written to disk.
// The Pickle object only lives long enough to be written to disk, so it
// doesn't matter if we briefly overallocate memory. 10,900 bytes is enough to
// cover 99% percentile of HttpResponseInfo pickle sizes based on Dev/Canary
// data from 2025-01-20 (the mean is 4,773).
pickle->Reserve(10900);
int flags = RESPONSE_INFO_VERSION;
int extra_flags = 0;
if (ssl_info.is_valid()) {
flags |= RESPONSE_INFO_HAS_CERT;
flags |= RESPONSE_INFO_HAS_CERT_STATUS;
if (ssl_info.key_exchange_group != 0)
flags |= RESPONSE_INFO_HAS_KEY_EXCHANGE_GROUP;
if (ssl_info.connection_status != 0)
flags |= RESPONSE_INFO_HAS_SSL_CONNECTION_STATUS;
if (ssl_info.peer_signature_algorithm != 0)
flags |= RESPONSE_INFO_HAS_PEER_SIGNATURE_ALGORITHM;
}
if (vary_data.is_valid())
flags |= RESPONSE_INFO_HAS_VARY_DATA;
if (response_truncated)
flags |= RESPONSE_INFO_TRUNCATED;
if (was_fetched_via_spdy)
flags |= RESPONSE_INFO_WAS_SPDY;
if (was_alpn_negotiated) {
flags |= RESPONSE_INFO_WAS_ALPN;
flags |= RESPONSE_INFO_HAS_ALPN_NEGOTIATED_PROTOCOL;
}
if (connection_info != HttpConnectionInfo::kUNKNOWN) {
flags |= RESPONSE_INFO_HAS_CONNECTION_INFO;
}
if (did_use_http_auth)
flags |= RESPONSE_INFO_USE_HTTP_AUTHENTICATION;
if (unused_since_prefetch)
flags |= RESPONSE_INFO_UNUSED_SINCE_PREFETCH;
if (restricted_prefetch)
flags |= RESPONSE_INFO_RESTRICTED_PREFETCH;
// RESPONSE_INFO_UNUSED_WAS_SINGLE_KEYED_CACHE_ENTRY_UNUSABLE is not used.
if (ssl_info.pkp_bypassed)
flags |= RESPONSE_INFO_PKP_BYPASSED;
if (!stale_revalidate_timeout.is_null())
flags |= RESPONSE_INFO_HAS_STALENESS;
if (!dns_aliases.empty())
flags |= RESPONSE_INFO_HAS_DNS_ALIASES;
if (ssl_info.encrypted_client_hello)
flags |= RESPONSE_INFO_ENCRYPTED_CLIENT_HELLO;
if (browser_run_id.has_value())
flags |= RESPONSE_INFO_BROWSER_RUN_ID;
if (did_use_shared_dictionary) {
extra_flags |= RESPONSE_EXTRA_INFO_DID_USE_SHARED_DICTIONARY;
}
if (proxy_chain.IsValid()) {
extra_flags |= RESPONSE_EXTRA_INFO_HAS_PROXY_CHAIN;
}
extra_flags |= RESPONSE_EXTRA_INFO_HAS_ORIGINAL_RESPONSE_TIME;
flags |= RESPONSE_INFO_HAS_EXTRA_FLAGS;
pickle->WriteInt(flags);
pickle->WriteInt(extra_flags);
pickle->WriteInt64(request_time.ToInternalValue());
pickle->WriteInt64(response_time.ToInternalValue());
pickle->WriteInt64(original_response_time.ToInternalValue());
HttpResponseHeaders::PersistOptions persist_options =
HttpResponseHeaders::PERSIST_RAW;
if (skip_transient_headers) {
persist_options = HttpResponseHeaders::PERSIST_SANS_COOKIES |
HttpResponseHeaders::PERSIST_SANS_CHALLENGES |
HttpResponseHeaders::PERSIST_SANS_HOP_BY_HOP |
HttpResponseHeaders::PERSIST_SANS_NON_CACHEABLE |
HttpResponseHeaders::PERSIST_SANS_RANGES |
HttpResponseHeaders::PERSIST_SANS_SECURITY_STATE;
}
headers->Persist(pickle.get(), persist_options);
if (ssl_info.is_valid()) {
ssl_info.cert->Persist(pickle.get());
pickle->WriteUInt32(ssl_info.cert_status);
if (ssl_info.connection_status != 0)
pickle->WriteInt(ssl_info.connection_status);
}
if (vary_data.is_valid())
vary_data.Persist(pickle.get());
pickle->WriteString(remote_endpoint.ToStringWithoutPort());
pickle->WriteUInt16(remote_endpoint.port());
if (was_alpn_negotiated)
pickle->WriteString(alpn_negotiated_protocol);
if (connection_info != HttpConnectionInfo::kUNKNOWN) {
pickle->WriteInt(static_cast<int>(connection_info));
}
if (ssl_info.is_valid() && ssl_info.key_exchange_group != 0)
pickle->WriteInt(ssl_info.key_exchange_group);
if (flags & RESPONSE_INFO_HAS_STALENESS) {
pickle->WriteInt64(
(stale_revalidate_timeout - base::Time()).InMicroseconds());
}
if (ssl_info.is_valid() && ssl_info.peer_signature_algorithm != 0)
pickle->WriteInt(ssl_info.peer_signature_algorithm);
if (!dns_aliases.empty()) {
pickle->WriteInt(dns_aliases.size());
for (const auto& alias : dns_aliases)
pickle->WriteString(alias);
}
if (browser_run_id.has_value()) {
pickle->WriteInt64(browser_run_id.value());
}
if (proxy_chain.IsValid()) {
proxy_chain.Persist(pickle.get());
}
return pickle;
}
bool HttpResponseInfo::DidUseQuic() const {
switch (connection_info) {
case HttpConnectionInfo::kUNKNOWN:
case HttpConnectionInfo::kHTTP1_1:
case HttpConnectionInfo::kDEPRECATED_SPDY2:
case HttpConnectionInfo::kDEPRECATED_SPDY3:
case HttpConnectionInfo::kHTTP2:
case HttpConnectionInfo::kDEPRECATED_HTTP2_14:
case HttpConnectionInfo::kDEPRECATED_HTTP2_15:
case HttpConnectionInfo::kHTTP0_9:
case HttpConnectionInfo::kHTTP1_0:
return false;
case HttpConnectionInfo::kQUIC_UNKNOWN_VERSION:
case HttpConnectionInfo::kQUIC_32:
case HttpConnectionInfo::kQUIC_33:
case HttpConnectionInfo::kQUIC_34:
case HttpConnectionInfo::kQUIC_35:
case HttpConnectionInfo::kQUIC_36:
case HttpConnectionInfo::kQUIC_37:
case HttpConnectionInfo::kQUIC_38:
case HttpConnectionInfo::kQUIC_39:
case HttpConnectionInfo::kQUIC_40:
case HttpConnectionInfo::kQUIC_41:
case HttpConnectionInfo::kQUIC_42:
case HttpConnectionInfo::kQUIC_43:
case HttpConnectionInfo::kQUIC_44:
case HttpConnectionInfo::kQUIC_45:
case HttpConnectionInfo::kQUIC_46:
case HttpConnectionInfo::kQUIC_47:
case HttpConnectionInfo::kQUIC_Q048:
case HttpConnectionInfo::kQUIC_T048:
case HttpConnectionInfo::kQUIC_Q049:
case HttpConnectionInfo::kQUIC_T049:
case HttpConnectionInfo::kQUIC_Q050:
case HttpConnectionInfo::kQUIC_T050:
case HttpConnectionInfo::kQUIC_Q099:
case HttpConnectionInfo::kQUIC_T099:
case HttpConnectionInfo::kQUIC_999:
case HttpConnectionInfo::kQUIC_DRAFT_25:
case HttpConnectionInfo::kQUIC_DRAFT_27:
case HttpConnectionInfo::kQUIC_DRAFT_28:
case HttpConnectionInfo::kQUIC_DRAFT_29:
case HttpConnectionInfo::kQUIC_T051:
case HttpConnectionInfo::kQUIC_RFC_V1:
case HttpConnectionInfo::kDEPRECATED_QUIC_2_DRAFT_1:
case HttpConnectionInfo::kQUIC_2_DRAFT_8:
return true;
}
}
bool HttpResponseInfo::WasFetchedViaProxy() const {
return proxy_chain.IsValid() && !proxy_chain.is_direct();
}
} // namespace net
|