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

Side by Side Diff: net/quic/quic_client_session.h

Issue 11633030: Send the ClientHello handshake message. Fix a bug in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove an extraneous test:: before TestCryptoVisitor Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « net/quic/crypto/crypto_utils.cc ('k') | net/quic/quic_client_session.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 // A client specific QuicSession subclass. This class owns the underlying 5 // A client specific QuicSession subclass. This class owns the underlying
6 // QuicConnection and QuicConnectionHelper objects. The connection stores 6 // QuicConnection and QuicConnectionHelper objects. The connection stores
7 // a non-owning pointer to the helper so this session needs to ensure that 7 // a non-owning pointer to the helper so this session needs to ensure that
8 // the helper outlives the connection. 8 // the helper outlives the connection.
9 9
10 #ifndef NET_QUIC_QUIC_CLIENT_SESSION_H_ 10 #ifndef NET_QUIC_QUIC_CLIENT_SESSION_H_
(...skipping 20 matching lines...) Expand all
31 QuicStreamFactory* stream_factory); 31 QuicStreamFactory* stream_factory);
32 32
33 virtual ~QuicClientSession(); 33 virtual ~QuicClientSession();
34 34
35 // QuicSession methods: 35 // QuicSession methods:
36 virtual QuicReliableClientStream* CreateOutgoingReliableStream() OVERRIDE; 36 virtual QuicReliableClientStream* CreateOutgoingReliableStream() OVERRIDE;
37 virtual QuicCryptoClientStream* GetCryptoStream() OVERRIDE; 37 virtual QuicCryptoClientStream* GetCryptoStream() OVERRIDE;
38 virtual void CloseStream(QuicStreamId stream_id) OVERRIDE; 38 virtual void CloseStream(QuicStreamId stream_id) OVERRIDE;
39 virtual void OnCryptoHandshakeComplete(QuicErrorCode error) OVERRIDE; 39 virtual void OnCryptoHandshakeComplete(QuicErrorCode error) OVERRIDE;
40 40
41 // Perform a crypto handshake with the server. 41 // Performs a crypto handshake with the server.
42 int CryptoConnect(const CompletionCallback& callback); 42 int CryptoConnect(const CompletionCallback& callback);
43 43
44 // Causes the QuicConnectionHelper to start reading from the socket 44 // Causes the QuicConnectionHelper to start reading from the socket
45 // and passing the data along to the QuicConnection. 45 // and passing the data along to the QuicConnection.
46 void StartReading(); 46 void StartReading();
47 47
48 // Close the session because of |error|. 48 // Close the session because of |error|.
49 void CloseSessionOnError(int error); 49 void CloseSessionOnError(int error);
50 50
51 base::Value* GetInfoAsValue(const HostPortPair& pair) const; 51 base::Value* GetInfoAsValue(const HostPortPair& pair) const;
(...skipping 14 matching lines...) Expand all
66 scoped_refptr<IOBufferWithSize> read_buffer_; 66 scoped_refptr<IOBufferWithSize> read_buffer_;
67 bool read_pending_; 67 bool read_pending_;
68 CompletionCallback callback_; 68 CompletionCallback callback_;
69 69
70 DISALLOW_COPY_AND_ASSIGN(QuicClientSession); 70 DISALLOW_COPY_AND_ASSIGN(QuicClientSession);
71 }; 71 };
72 72
73 } // namespace net 73 } // namespace net
74 74
75 #endif // NET_QUIC_QUIC_CLIENT_SESSION_H_ 75 #endif // NET_QUIC_QUIC_CLIENT_SESSION_H_
OLDNEW
« no previous file with comments | « net/quic/crypto/crypto_utils.cc ('k') | net/quic/quic_client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698