summaryrefslogtreecommitdiff
path: root/chromium/net/quic/core/quic_crypto_handshaker.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/net/quic/core/quic_crypto_handshaker.h')
-rw-r--r--chromium/net/quic/core/quic_crypto_handshaker.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/chromium/net/quic/core/quic_crypto_handshaker.h b/chromium/net/quic/core/quic_crypto_handshaker.h
new file mode 100644
index 00000000000..76deb37f7c7
--- /dev/null
+++ b/chromium/net/quic/core/quic_crypto_handshaker.h
@@ -0,0 +1,42 @@
+// 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.
+
+#ifndef NET_QUIC_CORE_QUIC_CRYPTO_HANDSHAKER_H_
+#define NET_QUIC_CORE_QUIC_CRYPTO_HANDSHAKER_H_
+
+#include "net/quic/core/quic_crypto_stream.h"
+#include "net/quic/platform/api/quic_export.h"
+
+namespace net {
+
+class QUIC_EXPORT_PRIVATE QuicCryptoHandshaker
+ : public CryptoFramerVisitorInterface {
+ public:
+ QuicCryptoHandshaker(QuicCryptoStream* stream, QuicSession* session);
+
+ ~QuicCryptoHandshaker() override;
+
+ // Sends |message| to the peer.
+ // TODO(wtc): return a success/failure status.
+ void SendHandshakeMessage(const CryptoHandshakeMessage& message);
+
+ void OnError(CryptoFramer* framer) override;
+ void OnHandshakeMessage(const CryptoHandshakeMessage& message) override;
+
+ CryptoMessageParser* crypto_message_parser();
+
+ private:
+ QuicSession* session() { return session_; }
+
+ QuicCryptoStream* stream_;
+ QuicSession* session_;
+
+ CryptoFramer crypto_framer_;
+
+ DISALLOW_COPY_AND_ASSIGN(QuicCryptoHandshaker);
+};
+
+} // namespace net
+
+#endif // NET_QUIC_CORE_QUIC_CRYPTO_HANDSHAKER_H_