OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <stddef.h> | 5 #include <stddef.h> |
6 #include <string> | 6 #include <string> |
7 #include <sys/epoll.h> | 7 #include <sys/epoll.h> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
14 #include "base/synchronization/waitable_event.h" | 14 #include "base/synchronization/waitable_event.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "net/base/ip_endpoint.h" | 16 #include "net/base/ip_endpoint.h" |
17 #include "net/quic/congestion_control/tcp_cubic_sender.h" | 17 #include "net/quic/congestion_control/tcp_cubic_sender.h" |
18 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" | 18 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" |
19 #include "net/quic/crypto/null_encrypter.h" | 19 #include "net/quic/crypto/null_encrypter.h" |
20 #include "net/quic/quic_flags.h" | 20 #include "net/quic/quic_flags.h" |
21 #include "net/quic/quic_framer.h" | 21 #include "net/quic/quic_framer.h" |
22 #include "net/quic/quic_packet_creator.h" | 22 #include "net/quic/quic_packet_creator.h" |
23 #include "net/quic/quic_protocol.h" | 23 #include "net/quic/quic_protocol.h" |
24 #include "net/quic/quic_sent_packet_manager.h" | 24 #include "net/quic/quic_sent_packet_manager.h" |
25 #include "net/quic/quic_server_id.h" | 25 #include "net/quic/quic_server_id.h" |
| 26 #include "net/quic/quic_utils.h" |
26 #include "net/quic/test_tools/quic_connection_peer.h" | 27 #include "net/quic/test_tools/quic_connection_peer.h" |
27 #include "net/quic/test_tools/quic_flow_controller_peer.h" | 28 #include "net/quic/test_tools/quic_flow_controller_peer.h" |
| 29 #include "net/quic/test_tools/quic_sent_packet_manager_peer.h" |
28 #include "net/quic/test_tools/quic_session_peer.h" | 30 #include "net/quic/test_tools/quic_session_peer.h" |
29 #include "net/quic/test_tools/quic_test_utils.h" | 31 #include "net/quic/test_tools/quic_test_utils.h" |
30 #include "net/quic/test_tools/reliable_quic_stream_peer.h" | 32 #include "net/quic/test_tools/reliable_quic_stream_peer.h" |
31 #include "net/test/gtest_util.h" | 33 #include "net/test/gtest_util.h" |
32 #include "net/tools/epoll_server/epoll_server.h" | 34 #include "net/tools/epoll_server/epoll_server.h" |
33 #include "net/tools/quic/quic_epoll_connection_helper.h" | 35 #include "net/tools/quic/quic_epoll_connection_helper.h" |
34 #include "net/tools/quic/quic_in_memory_cache.h" | 36 #include "net/tools/quic/quic_in_memory_cache.h" |
35 #include "net/tools/quic/quic_packet_writer_wrapper.h" | 37 #include "net/tools/quic/quic_packet_writer_wrapper.h" |
36 #include "net/tools/quic/quic_server.h" | 38 #include "net/tools/quic/quic_server.h" |
37 #include "net/tools/quic/quic_socket_utils.h" | 39 #include "net/tools/quic/quic_socket_utils.h" |
38 #include "net/tools/quic/quic_spdy_client_stream.h" | 40 #include "net/tools/quic/quic_spdy_client_stream.h" |
39 #include "net/tools/quic/test_tools/http_message.h" | 41 #include "net/tools/quic/test_tools/http_message.h" |
40 #include "net/tools/quic/test_tools/packet_dropping_test_writer.h" | 42 #include "net/tools/quic/test_tools/packet_dropping_test_writer.h" |
41 #include "net/tools/quic/test_tools/quic_client_peer.h" | 43 #include "net/tools/quic/test_tools/quic_client_peer.h" |
42 #include "net/tools/quic/test_tools/quic_dispatcher_peer.h" | 44 #include "net/tools/quic/test_tools/quic_dispatcher_peer.h" |
43 #include "net/tools/quic/test_tools/quic_in_memory_cache_peer.h" | 45 #include "net/tools/quic/test_tools/quic_in_memory_cache_peer.h" |
44 #include "net/tools/quic/test_tools/quic_server_peer.h" | 46 #include "net/tools/quic/test_tools/quic_server_peer.h" |
45 #include "net/tools/quic/test_tools/quic_test_client.h" | 47 #include "net/tools/quic/test_tools/quic_test_client.h" |
46 #include "net/tools/quic/test_tools/server_thread.h" | 48 #include "net/tools/quic/test_tools/server_thread.h" |
47 #include "testing/gtest/include/gtest/gtest.h" | 49 #include "testing/gtest/include/gtest/gtest.h" |
48 | 50 |
49 using base::StringPiece; | 51 using base::StringPiece; |
50 using base::WaitableEvent; | 52 using base::WaitableEvent; |
51 using net::EpollServer; | 53 using net::EpollServer; |
52 using net::test::GenerateBody; | 54 using net::test::GenerateBody; |
53 using net::test::QuicConnectionPeer; | 55 using net::test::QuicConnectionPeer; |
54 using net::test::QuicFlowControllerPeer; | 56 using net::test::QuicFlowControllerPeer; |
| 57 using net::test::QuicSentPacketManagerPeer; |
55 using net::test::QuicSessionPeer; | 58 using net::test::QuicSessionPeer; |
56 using net::test::ReliableQuicStreamPeer; | 59 using net::test::ReliableQuicStreamPeer; |
57 using net::test::ValueRestore; | 60 using net::test::ValueRestore; |
58 using net::test::kClientDataStreamId1; | 61 using net::test::kClientDataStreamId1; |
59 using net::tools::test::PacketDroppingTestWriter; | 62 using net::tools::test::PacketDroppingTestWriter; |
60 using net::tools::test::QuicDispatcherPeer; | 63 using net::tools::test::QuicDispatcherPeer; |
61 using net::tools::test::QuicServerPeer; | 64 using net::tools::test::QuicServerPeer; |
62 using std::ostream; | 65 using std::ostream; |
63 using std::string; | 66 using std::string; |
64 using std::vector; | 67 using std::vector; |
65 | 68 |
66 namespace net { | 69 namespace net { |
67 namespace tools { | 70 namespace tools { |
68 namespace test { | 71 namespace test { |
69 namespace { | 72 namespace { |
70 | 73 |
71 const char* kFooResponseBody = "Artichoke hearts make me happy."; | 74 const char* kFooResponseBody = "Artichoke hearts make me happy."; |
72 const char* kBarResponseBody = "Palm hearts are pretty delicious, also."; | 75 const char* kBarResponseBody = "Palm hearts are pretty delicious, also."; |
73 | 76 |
74 // Run all tests with the cross products of all versions. | 77 // Run all tests with the cross products of all versions. |
75 struct TestParams { | 78 struct TestParams { |
76 TestParams(const QuicVersionVector& client_supported_versions, | 79 TestParams(const QuicVersionVector& client_supported_versions, |
77 const QuicVersionVector& server_supported_versions, | 80 const QuicVersionVector& server_supported_versions, |
78 QuicVersion negotiated_version, | 81 QuicVersion negotiated_version, |
79 bool use_pacing, | 82 bool use_pacing, |
80 bool use_fec) | 83 bool use_fec, |
| 84 QuicTag congestion_control_tag) |
81 : client_supported_versions(client_supported_versions), | 85 : client_supported_versions(client_supported_versions), |
82 server_supported_versions(server_supported_versions), | 86 server_supported_versions(server_supported_versions), |
83 negotiated_version(negotiated_version), | 87 negotiated_version(negotiated_version), |
84 use_pacing(use_pacing), | 88 use_pacing(use_pacing), |
85 use_fec(use_fec) { | 89 use_fec(use_fec), |
| 90 congestion_control_tag(congestion_control_tag) { |
86 } | 91 } |
87 | 92 |
88 friend ostream& operator<<(ostream& os, const TestParams& p) { | 93 friend ostream& operator<<(ostream& os, const TestParams& p) { |
89 os << "{ server_supported_versions: " | 94 os << "{ server_supported_versions: " |
90 << QuicVersionVectorToString(p.server_supported_versions); | 95 << QuicVersionVectorToString(p.server_supported_versions); |
91 os << " client_supported_versions: " | 96 os << " client_supported_versions: " |
92 << QuicVersionVectorToString(p.client_supported_versions); | 97 << QuicVersionVectorToString(p.client_supported_versions); |
93 os << " negotiated_version: " << QuicVersionToString(p.negotiated_version); | 98 os << " negotiated_version: " << QuicVersionToString(p.negotiated_version); |
94 os << " use_pacing: " << p.use_pacing; | 99 os << " use_pacing: " << p.use_pacing; |
95 os << " use_fec: " << p.use_fec << " }"; | 100 os << " use_fec: " << p.use_fec; |
| 101 os << " congestion_control_tag: " |
| 102 << QuicUtils::TagToString(p.congestion_control_tag) << " }"; |
96 return os; | 103 return os; |
97 } | 104 } |
98 | 105 |
99 QuicVersionVector client_supported_versions; | 106 QuicVersionVector client_supported_versions; |
100 QuicVersionVector server_supported_versions; | 107 QuicVersionVector server_supported_versions; |
101 QuicVersion negotiated_version; | 108 QuicVersion negotiated_version; |
102 bool use_pacing; | 109 bool use_pacing; |
103 bool use_fec; | 110 bool use_fec; |
| 111 QuicTag congestion_control_tag; |
104 }; | 112 }; |
105 | 113 |
106 // Constructs various test permutations. | 114 // Constructs various test permutations. |
107 vector<TestParams> GetTestParams() { | 115 vector<TestParams> GetTestParams() { |
108 vector<TestParams> params; | 116 vector<TestParams> params; |
109 QuicVersionVector all_supported_versions = QuicSupportedVersions(); | 117 QuicVersionVector all_supported_versions = QuicSupportedVersions(); |
110 for (int use_fec = 0; use_fec < 2; ++use_fec) { | 118 // TODO(rtenneti): Add kTBBR after BBR code is checked in. |
111 for (int use_pacing = 0; use_pacing < 2; ++use_pacing) { | 119 // QuicTag congestion_control_tags[] = {kRENO, kTBBR, kQBIC}; |
112 // Add an entry for server and client supporting all versions. | 120 QuicTag congestion_control_tags[] = {kRENO, kQBIC}; |
113 params.push_back(TestParams(all_supported_versions, | 121 for (size_t congestion_control_index = 0; |
114 all_supported_versions, | 122 congestion_control_index < arraysize(congestion_control_tags); |
115 all_supported_versions[0], | 123 congestion_control_index++) { |
116 use_pacing != 0, | 124 QuicTag congestion_control_tag = |
117 use_fec != 0)); | 125 congestion_control_tags[congestion_control_index]; |
| 126 for (int use_fec = 0; use_fec < 2; ++use_fec) { |
| 127 for (int use_pacing = 0; use_pacing < 2; ++use_pacing) { |
| 128 // Add an entry for server and client supporting all versions. |
| 129 params.push_back(TestParams(all_supported_versions, |
| 130 all_supported_versions, |
| 131 all_supported_versions[0], |
| 132 use_pacing != 0, |
| 133 use_fec != 0, |
| 134 congestion_control_tag)); |
118 | 135 |
119 // Test client supporting all versions and server supporting 1 version. | 136 // Test client supporting all versions and server supporting 1 version. |
120 // Simulate an old server and exercise version downgrade in the client. | 137 // Simulate an old server and exercise version downgrade in the client. |
121 // Protocol negotiation should occur. Skip the i = 0 case because it is | 138 // Protocol negotiation should occur. Skip the i = 0 case because it is |
122 // essentially the same as the default case. | 139 // essentially the same as the default case. |
123 for (size_t i = 1; i < all_supported_versions.size(); ++i) { | 140 for (size_t i = 1; i < all_supported_versions.size(); ++i) { |
124 QuicVersionVector server_supported_versions; | 141 QuicVersionVector server_supported_versions; |
125 server_supported_versions.push_back(all_supported_versions[i]); | 142 server_supported_versions.push_back(all_supported_versions[i]); |
126 if (all_supported_versions[i] >= QUIC_VERSION_18) { | 143 if (all_supported_versions[i] >= QUIC_VERSION_18) { |
127 // Until flow control is globally rolled out and we remove | 144 // Until flow control is globally rolled out and we remove |
128 // QUIC_VERSION_16, the server MUST support at least one QUIC version | 145 // QUIC_VERSION_16, the server MUST support at least one QUIC |
129 // that does not use flow control. | 146 // version that does not use flow control. |
130 server_supported_versions.push_back(QUIC_VERSION_16); | 147 server_supported_versions.push_back(QUIC_VERSION_16); |
| 148 } |
| 149 params.push_back(TestParams(all_supported_versions, |
| 150 server_supported_versions, |
| 151 server_supported_versions[0], |
| 152 use_pacing != 0, |
| 153 use_fec != 0, |
| 154 congestion_control_tag)); |
131 } | 155 } |
132 params.push_back(TestParams(all_supported_versions, | |
133 server_supported_versions, | |
134 server_supported_versions[0], | |
135 use_pacing != 0, | |
136 use_fec != 0)); | |
137 } | 156 } |
138 } | 157 } |
139 } | 158 } |
140 return params; | 159 return params; |
141 } | 160 } |
142 | 161 |
143 class ServerDelegate : public PacketDroppingTestWriter::Delegate { | 162 class ServerDelegate : public PacketDroppingTestWriter::Delegate { |
144 public: | 163 public: |
145 explicit ServerDelegate(QuicDispatcher* dispatcher) | 164 explicit ServerDelegate(QuicDispatcher* dispatcher) |
146 : dispatcher_(dispatcher) {} | 165 : dispatcher_(dispatcher) {} |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 server_config_.SetInitialStreamFlowControlWindowToSend(window); | 277 server_config_.SetInitialStreamFlowControlWindowToSend(window); |
259 } | 278 } |
260 | 279 |
261 void set_server_initial_session_flow_control_receive_window(uint32 window) { | 280 void set_server_initial_session_flow_control_receive_window(uint32 window) { |
262 CHECK(server_thread_.get() == NULL); | 281 CHECK(server_thread_.get() == NULL); |
263 DLOG(INFO) << "Setting server initial session flow control window: " | 282 DLOG(INFO) << "Setting server initial session flow control window: " |
264 << window; | 283 << window; |
265 server_config_.SetInitialSessionFlowControlWindowToSend(window); | 284 server_config_.SetInitialSessionFlowControlWindowToSend(window); |
266 } | 285 } |
267 | 286 |
| 287 const QuicSentPacketManager * |
| 288 GetSentPacketManagerFromFirstServerSession() const { |
| 289 QuicDispatcher* dispatcher = |
| 290 QuicServerPeer::GetDispatcher(server_thread_->server()); |
| 291 QuicSession* session = dispatcher->session_map().begin()->second; |
| 292 return &session->connection()->sent_packet_manager(); |
| 293 } |
| 294 |
268 bool Initialize() { | 295 bool Initialize() { |
| 296 QuicTagVector copt; |
| 297 |
| 298 // TODO(nimia): Consider setting the congestion control algorithm for the |
| 299 // client as well according to the test parameter. |
| 300 copt.push_back(GetParam().congestion_control_tag); |
| 301 |
269 if (GetParam().use_fec) { | 302 if (GetParam().use_fec) { |
270 // Set FEC config in client's connection options and in client session. | 303 // Set FEC config in client's connection options and in client session. |
271 QuicTagVector copt; | |
272 copt.push_back(kFHDR); | 304 copt.push_back(kFHDR); |
273 client_config_.SetConnectionOptionsToSend(copt); | |
274 } | 305 } |
| 306 |
| 307 client_config_.SetConnectionOptionsToSend(copt); |
| 308 |
275 // Start the server first, because CreateQuicClient() attempts | 309 // Start the server first, because CreateQuicClient() attempts |
276 // to connect to the server. | 310 // to connect to the server. |
277 StartServer(); | 311 StartServer(); |
278 client_.reset(CreateQuicClient(client_writer_)); | 312 client_.reset(CreateQuicClient(client_writer_)); |
279 if (GetParam().use_fec) { | 313 if (GetParam().use_fec) { |
280 // Set FecPolicy to always protect data on all streams. | 314 // Set FecPolicy to always protect data on all streams. |
281 client_->SetFecPolicy(FEC_PROTECT_ALWAYS); | 315 client_->SetFecPolicy(FEC_PROTECT_ALWAYS); |
282 } | 316 } |
283 static EpollEvent event(EPOLLOUT, false); | 317 static EpollEvent event(EPOLLOUT, false); |
284 client_writer_->Initialize( | 318 client_writer_->Initialize( |
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
857 // Open two simultaneous streams. | 891 // Open two simultaneous streams. |
858 client_->SendMessage(request); | 892 client_->SendMessage(request); |
859 client_->SendMessage(request); | 893 client_->SendMessage(request); |
860 client_->WaitForResponse(); | 894 client_->WaitForResponse(); |
861 | 895 |
862 EXPECT_FALSE(client_->connected()); | 896 EXPECT_FALSE(client_->connected()); |
863 EXPECT_EQ(QUIC_STREAM_CONNECTION_ERROR, client_->stream_error()); | 897 EXPECT_EQ(QUIC_STREAM_CONNECTION_ERROR, client_->stream_error()); |
864 EXPECT_EQ(QUIC_TOO_MANY_OPEN_STREAMS, client_->connection_error()); | 898 EXPECT_EQ(QUIC_TOO_MANY_OPEN_STREAMS, client_->connection_error()); |
865 } | 899 } |
866 | 900 |
| 901 TEST_P(EndToEndTest, NegotiateCongestionControl) { |
| 902 ASSERT_TRUE(Initialize()); |
| 903 client_->client()->WaitForCryptoHandshakeConfirmed(); |
| 904 |
| 905 CongestionControlType expected_congestion_control_type; |
| 906 switch (GetParam().congestion_control_tag) { |
| 907 case kRENO: |
| 908 expected_congestion_control_type = kReno; |
| 909 break; |
| 910 case kTBBR: |
| 911 expected_congestion_control_type = kBBR; |
| 912 break; |
| 913 case kQBIC: |
| 914 expected_congestion_control_type = kCubic; |
| 915 break; |
| 916 default: |
| 917 DLOG(FATAL) << "Unexpected congestion control tag"; |
| 918 } |
| 919 |
| 920 EXPECT_EQ(expected_congestion_control_type, |
| 921 QuicSentPacketManagerPeer::GetCongestionControlAlgorithm( |
| 922 *GetSentPacketManagerFromFirstServerSession()) |
| 923 ->GetCongestionControlType()); |
| 924 } |
| 925 |
867 TEST_P(EndToEndTest, LimitMaxOpenStreams) { | 926 TEST_P(EndToEndTest, LimitMaxOpenStreams) { |
868 // Server limits the number of max streams to 2. | 927 // Server limits the number of max streams to 2. |
869 server_config_.set_max_streams_per_connection(2, 2); | 928 server_config_.set_max_streams_per_connection(2, 2); |
870 // Client tries to negotiate for 10. | 929 // Client tries to negotiate for 10. |
871 client_config_.set_max_streams_per_connection(10, 5); | 930 client_config_.set_max_streams_per_connection(10, 5); |
872 | 931 |
873 ASSERT_TRUE(Initialize()); | 932 ASSERT_TRUE(Initialize()); |
874 client_->client()->WaitForCryptoHandshakeConfirmed(); | 933 client_->client()->WaitForCryptoHandshakeConfirmed(); |
875 QuicConfig* client_negotiated_config = client_->client()->session()->config(); | 934 QuicConfig* client_negotiated_config = client_->client()->session()->config(); |
876 EXPECT_EQ(2u, client_negotiated_config->max_streams_per_connection()); | 935 EXPECT_EQ(2u, client_negotiated_config->max_streams_per_connection()); |
877 } | 936 } |
878 | 937 |
879 // TODO(rtenneti): DISABLED_LimitCongestionWindowAndRTT seems to be flaky. | 938 // TODO(rtenneti): DISABLED_LimitCongestionWindowAndRTT seems to be flaky. |
880 // http://crbug.com/321870. | 939 // http://crbug.com/321870. |
881 TEST_P(EndToEndTest, DISABLED_LimitCongestionWindowAndRTT) { | 940 TEST_P(EndToEndTest, DISABLED_LimitCongestionWindowAndRTT) { |
882 // Client tries to request twice the server's max initial window, and the | 941 // Client tries to request twice the server's max initial window, and the |
883 // server limits it to the max. | 942 // server limits it to the max. |
884 client_config_.SetInitialCongestionWindowToSend(2 * kMaxInitialWindow); | 943 client_config_.SetInitialCongestionWindowToSend(2 * kMaxInitialWindow); |
885 client_config_.SetInitialRoundTripTimeUsToSend(1); | 944 client_config_.SetInitialRoundTripTimeUsToSend(1); |
886 | 945 |
887 ASSERT_TRUE(Initialize()); | 946 ASSERT_TRUE(Initialize()); |
888 client_->client()->WaitForCryptoHandshakeConfirmed(); | 947 client_->client()->WaitForCryptoHandshakeConfirmed(); |
889 server_thread_->WaitForCryptoHandshakeConfirmed(); | 948 server_thread_->WaitForCryptoHandshakeConfirmed(); |
890 | 949 |
891 // Pause the server so we can access the server's internals without races. | 950 // Pause the server so we can access the server's internals without races. |
892 server_thread_->Pause(); | 951 server_thread_->Pause(); |
893 QuicDispatcher* dispatcher = | 952 QuicDispatcher* dispatcher = |
894 QuicServerPeer::GetDispatcher(server_thread_->server()); | 953 QuicServerPeer::GetDispatcher(server_thread_->server()); |
895 ASSERT_EQ(1u, dispatcher->session_map().size()); | 954 ASSERT_EQ(1u, dispatcher->session_map().size()); |
896 QuicSession* session = dispatcher->session_map().begin()->second; | |
897 const QuicSentPacketManager& client_sent_packet_manager = | 955 const QuicSentPacketManager& client_sent_packet_manager = |
898 client_->client()->session()->connection()->sent_packet_manager(); | 956 client_->client()->session()->connection()->sent_packet_manager(); |
899 const QuicSentPacketManager& server_sent_packet_manager = | 957 const QuicSentPacketManager& server_sent_packet_manager = |
900 session->connection()->sent_packet_manager(); | 958 *GetSentPacketManagerFromFirstServerSession(); |
901 | 959 |
902 // The client shouldn't set it's initial window based on the negotiated value. | 960 // The client shouldn't set it's initial window based on the negotiated value. |
903 EXPECT_EQ(kDefaultInitialWindow * kDefaultTCPMSS, | 961 EXPECT_EQ(kDefaultInitialWindow * kDefaultTCPMSS, |
904 client_sent_packet_manager.GetCongestionWindow()); | 962 client_sent_packet_manager.GetCongestionWindow()); |
905 EXPECT_EQ(kMaxInitialWindow * kDefaultTCPMSS, | 963 EXPECT_EQ(kMaxInitialWindow * kDefaultTCPMSS, |
906 server_sent_packet_manager.GetCongestionWindow()); | 964 server_sent_packet_manager.GetCongestionWindow()); |
907 | 965 |
908 EXPECT_EQ(FLAGS_enable_quic_pacing, | 966 EXPECT_EQ(FLAGS_enable_quic_pacing, |
909 server_sent_packet_manager.using_pacing()); | 967 server_sent_packet_manager.using_pacing()); |
910 EXPECT_EQ(FLAGS_enable_quic_pacing, | 968 EXPECT_EQ(FLAGS_enable_quic_pacing, |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1305 session->flow_controller(); | 1363 session->flow_controller(); |
1306 EXPECT_EQ(kSessionIFCW, QuicFlowControllerPeer::ReceiveWindowSize( | 1364 EXPECT_EQ(kSessionIFCW, QuicFlowControllerPeer::ReceiveWindowSize( |
1307 server_connection_flow_controller)); | 1365 server_connection_flow_controller)); |
1308 server_thread_->Resume(); | 1366 server_thread_->Resume(); |
1309 } | 1367 } |
1310 | 1368 |
1311 } // namespace | 1369 } // namespace |
1312 } // namespace test | 1370 } // namespace test |
1313 } // namespace tools | 1371 } // namespace tools |
1314 } // namespace net | 1372 } // namespace net |
OLD | NEW |