Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: net/quic/test_tools/crypto_test_utils.h

Issue 2104633002: Landing recent QUIC changes until 6/24/2016 14:00 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/quic/quic_spdy_stream_test.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ 5 #ifndef NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_
6 #define NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ 6 #define NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_
7 7
8 #include <stdarg.h> 8 #include <stdarg.h>
9 #include <stddef.h> 9 #include <stddef.h>
10 #include <stdint.h> 10 #include <stdint.h>
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 // If channel_id_source_async is true then the client will use an async 78 // If channel_id_source_async is true then the client will use an async
79 // ChannelIDSource for testing. Ignored if channel_id_enabled is false. 79 // ChannelIDSource for testing. Ignored if channel_id_enabled is false.
80 bool channel_id_source_async; 80 bool channel_id_source_async;
81 81
82 // If token_binding_enabled is true, then the client will attempt to 82 // If token_binding_enabled is true, then the client will attempt to
83 // negotiate Token Binding. 83 // negotiate Token Binding.
84 bool token_binding_enabled; 84 bool token_binding_enabled;
85 }; 85 };
86 86
87 // returns: the number of client hellos that the client sent. 87 // returns: the number of client hellos that the client sent.
88 static int HandshakeWithFakeServer(MockQuicConnectionHelper* helper, 88 static int HandshakeWithFakeServer(QuicConfig* server_quic_config,
89 MockQuicConnectionHelper* helper,
89 MockAlarmFactory* alarm_factory, 90 MockAlarmFactory* alarm_factory,
90 PacketSavingConnection* client_conn, 91 PacketSavingConnection* client_conn,
91 QuicCryptoClientStream* client, 92 QuicCryptoClientStream* client,
92 const FakeServerOptions& options); 93 const FakeServerOptions& options);
93 94
94 // returns: the number of client hellos that the client sent. 95 // returns: the number of client hellos that the client sent.
95 static int HandshakeWithFakeClient(MockQuicConnectionHelper* helper, 96 static int HandshakeWithFakeClient(MockQuicConnectionHelper* helper,
96
97 MockAlarmFactory* alarm_factory, 97 MockAlarmFactory* alarm_factory,
98
99 PacketSavingConnection* server_conn, 98 PacketSavingConnection* server_conn,
100 QuicCryptoServerStream* server, 99 QuicCryptoServerStream* server,
101 const QuicServerId& server_id, 100 const QuicServerId& server_id,
102 const FakeClientOptions& options); 101 const FakeClientOptions& options);
103 102
104 // SetupCryptoServerConfigForTest configures |config| and |crypto_config| 103 // SetupCryptoServerConfigForTest configures |config| and |crypto_config|
105 // with sensible defaults for testing. 104 // with sensible defaults for testing.
106 static void SetupCryptoServerConfigForTest( 105 static void SetupCryptoServerConfigForTest(
107 const QuicClock* clock, 106 const QuicClock* clock,
108 QuicRandom* rand, 107 QuicRandom* rand,
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 QuicCryptoServerStream* server); 210 QuicCryptoServerStream* server);
212 211
213 DISALLOW_COPY_AND_ASSIGN(CryptoTestUtils); 212 DISALLOW_COPY_AND_ASSIGN(CryptoTestUtils);
214 }; 213 };
215 214
216 } // namespace test 215 } // namespace test
217 216
218 } // namespace net 217 } // namespace net
219 218
220 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_ 219 #endif // NET_QUIC_TEST_TOOLS_CRYPTO_TEST_UTILS_H_
OLDNEW
« no previous file with comments | « net/quic/quic_spdy_stream_test.cc ('k') | net/quic/test_tools/crypto_test_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698