1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_CONFIG_PEER_H_
6 #define NET_QUIC_TEST_TOOLS_QUIC_CONFIG_PEER_H_
8 #include "net/quic/quic_config.h"
9 #include "net/quic/quic_protocol.h"
17 class QuicConfigPeer
{
19 static void SetReceivedSocketReceiveBuffer(QuicConfig
* config
,
20 uint32 receive_buffer_bytes
);
22 static void SetReceivedInitialStreamFlowControlWindow(QuicConfig
* config
,
25 static void SetReceivedInitialSessionFlowControlWindow(QuicConfig
* config
,
28 static void SetReceivedConnectionOptions(QuicConfig
* config
,
29 const QuicTagVector
& options
);
31 static void SetReceivedBytesForConnectionId(QuicConfig
* config
, uint32 bytes
);
34 DISALLOW_COPY_AND_ASSIGN(QuicConfigPeer
);
41 #endif // NET_QUIC_TEST_TOOLS_QUIC_CONFIG_PEER_H_