Index: net/tools/quic/quic_simple_crypto_server_stream_helper.cc |
diff --git a/net/tools/quic/quic_simple_crypto_server_stream_helper.cc b/net/tools/quic/quic_simple_crypto_server_stream_helper.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9f2870ac9a70c7fa014885b9cd49efb82e77d26c |
--- /dev/null |
+++ b/net/tools/quic/quic_simple_crypto_server_stream_helper.cc |
@@ -0,0 +1,28 @@ |
+// Copyright (c) 2012 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/tools/quic/quic_simple_crypto_server_stream_helper.h" |
+ |
+namespace net { |
+ |
+QuicSimpleCryptoServerStreamHelper::QuicSimpleCryptoServerStreamHelper( |
+ QuicRandom* random) |
+ : random_(random) {} |
+ |
+QuicSimpleCryptoServerStreamHelper::~QuicSimpleCryptoServerStreamHelper() {} |
+ |
+QuicConnectionId |
+ QuicSimpleCryptoServerStreamHelper::GenerateConnectionIdForReject( |
+ QuicConnectionId /*connection_id*/) const { |
+ return random_->RandUint64(); |
+} |
+ |
+bool QuicSimpleCryptoServerStreamHelper::CanAcceptClientHello( |
+ const CryptoHandshakeMessage& message, |
+ const IPEndPoint& self_address, |
+ std::string* error_details) const { |
+ return true; |
+} |
+ |
+} // namespace net |