mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include "net/quic/quic_chromium_client_session_peer.h"
|
||
|
|
||
|
#include "net/quic/quic_chromium_client_session.h"
|
||
|
#include "net/traffic_annotation/network_traffic_annotation_test_helper.h"
|
||
|
|
||
|
namespace net {
|
||
|
namespace test {
|
||
|
// static
|
||
|
void QuicChromiumClientSessionPeer::SetHostname(
|
||
|
QuicChromiumClientSession* session,
|
||
|
const std::string& hostname) {
|
||
|
quic::QuicServerId server_id(hostname,
|
||
|
session->session_key_.server_id().port(),
|
||
|
session->session_key_.privacy_mode());
|
||
|
session->session_key_ = QuicSessionKey(server_id, SocketTag());
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
uint64_t QuicChromiumClientSessionPeer::GetPushedBytesCount(
|
||
|
QuicChromiumClientSession* session) {
|
||
|
return session->bytes_pushed_count_;
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
uint64_t QuicChromiumClientSessionPeer::GetPushedAndUnclaimedBytesCount(
|
||
|
QuicChromiumClientSession* session) {
|
||
|
return session->bytes_pushed_and_unclaimed_count_;
|
||
|
}
|
||
|
|
||
|
// static
|
||
|
QuicChromiumClientStream*
|
||
|
QuicChromiumClientSessionPeer::CreateOutgoingDynamicStream(
|
||
|
QuicChromiumClientSession* session) {
|
||
|
return session->ShouldCreateOutgoingDynamicStream()
|
||
|
? session->CreateOutgoingReliableStreamImpl(
|
||
|
TRAFFIC_ANNOTATION_FOR_TESTS)
|
||
|
: nullptr;
|
||
|
}
|
||
|
|
||
|
} // namespace test
|
||
|
} // namespace net
|