blob: 1c7ad26b3d9279c12b8fa4c47625f0c8c790a353 [file] [log] [blame] [edit]
// Copyright 2016 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/spdy/multiplexed_http_stream.h"
#include <utility>
#include "base/notreached.h"
#include "net/http/http_raw_request_headers.h"
namespace net {
MultiplexedHttpStream::MultiplexedHttpStream(
std::unique_ptr<MultiplexedSessionHandle> session)
: session_(std::move(session)) {}
MultiplexedHttpStream::~MultiplexedHttpStream() = default;
int MultiplexedHttpStream::GetRemoteEndpoint(IPEndPoint* endpoint) {
return session_->GetRemoteEndpoint(endpoint);
}
void MultiplexedHttpStream::GetSSLInfo(SSLInfo* ssl_info) {
// Refresh from the live session to pick up state that may have changed
// after the initial cache (e.g., early_data_accepted is only known after
// the TLS/QUIC handshake completes, but the cache is populated at stream
// creation time before the handshake finishes).
session_->SaveSSLInfo();
session_->GetSSLInfo(ssl_info);
}
void MultiplexedHttpStream::SaveSSLInfo() {
session_->SaveSSLInfo();
}
void MultiplexedHttpStream::Drain(HttpNetworkSession* session) {
NOTREACHED();
}
std::unique_ptr<HttpStream> MultiplexedHttpStream::RenewStreamForAuth() {
return nullptr;
}
void MultiplexedHttpStream::SetConnectionReused() {}
bool MultiplexedHttpStream::CanReuseConnection() const {
// Multiplexed streams aren't considered reusable.
return false;
}
void MultiplexedHttpStream::SetRequestHeadersCallback(
RequestHeadersCallback callback) {
request_headers_callback_ = std::move(callback);
}
void MultiplexedHttpStream::DispatchRequestHeadersCallback(
const quiche::HttpHeaderBlock& spdy_headers) {
if (!request_headers_callback_)
return;
HttpRawRequestHeaders raw_headers;
for (const auto& entry : spdy_headers) {
raw_headers.Add(entry.first, entry.second);
}
request_headers_callback_.Run(std::move(raw_headers));
}
} // namespace net