mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
47 lines
1.3 KiB
C
47 lines
1.3 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.
|
||
|
|
||
|
#ifndef NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_
|
||
|
#define NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "base/macros.h"
|
||
|
#include "net/third_party/quic/core/quic_packets.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
class QuicChromiumClientSession;
|
||
|
class QuicChromiumClientStream;
|
||
|
|
||
|
namespace test {
|
||
|
|
||
|
class QuicChromiumClientSessionPeer {
|
||
|
public:
|
||
|
static void SetMaxOpenStreams(QuicChromiumClientSession* session,
|
||
|
size_t max_streams,
|
||
|
size_t default_streams);
|
||
|
|
||
|
static void SetHostname(QuicChromiumClientSession* session,
|
||
|
const std::string& hostname);
|
||
|
|
||
|
static uint64_t GetPushedBytesCount(QuicChromiumClientSession* session);
|
||
|
|
||
|
static uint64_t GetPushedAndUnclaimedBytesCount(
|
||
|
QuicChromiumClientSession* session);
|
||
|
|
||
|
static QuicChromiumClientStream* CreateOutgoingDynamicStream(
|
||
|
QuicChromiumClientSession* session);
|
||
|
|
||
|
private:
|
||
|
DISALLOW_COPY_AND_ASSIGN(QuicChromiumClientSessionPeer);
|
||
|
};
|
||
|
|
||
|
} // namespace test
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_QUIC_CHROMIUM_QUIC_CHROMIUM_CLIENT_SESSION_PEER_H_
|