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 // A server specific QuicSession subclass. | 5 // A server specific QuicSession subclass. |
6 | 6 |
7 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ | 7 #ifndef NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ |
8 #define NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ | 8 #define NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ |
9 | 9 |
10 #include <set> | 10 #include <set> |
(...skipping 28 matching lines...) Expand all Loading... |
39 virtual ~QuicServerSessionVisitor() {} | 39 virtual ~QuicServerSessionVisitor() {} |
40 | 40 |
41 virtual void OnConnectionClosed(QuicConnectionId connection_id, | 41 virtual void OnConnectionClosed(QuicConnectionId connection_id, |
42 QuicErrorCode error) = 0; | 42 QuicErrorCode error) = 0; |
43 virtual void OnWriteBlocked(QuicBlockedWriterInterface* writer) = 0; | 43 virtual void OnWriteBlocked(QuicBlockedWriterInterface* writer) = 0; |
44 }; | 44 }; |
45 | 45 |
46 class QuicServerSession : public QuicSession { | 46 class QuicServerSession : public QuicSession { |
47 public: | 47 public: |
48 QuicServerSession(const QuicConfig& config, | 48 QuicServerSession(const QuicConfig& config, |
49 QuicConnection *connection, | 49 QuicConnection* connection, |
50 QuicServerSessionVisitor* visitor); | 50 QuicServerSessionVisitor* visitor); |
51 | 51 |
52 // Override the base class to notify the owner of the connection close. | 52 // Override the base class to notify the owner of the connection close. |
53 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE; | 53 virtual void OnConnectionClosed(QuicErrorCode error, bool from_peer) OVERRIDE; |
54 virtual void OnWriteBlocked() OVERRIDE; | 54 virtual void OnWriteBlocked() OVERRIDE; |
55 | 55 |
56 virtual ~QuicServerSession(); | 56 virtual ~QuicServerSession(); |
57 | 57 |
58 virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config); | 58 virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config); |
59 | 59 |
60 const QuicCryptoServerStream* crypto_stream() const { | 60 const QuicCryptoServerStream* crypto_stream() const { |
61 return crypto_stream_.get(); | 61 return crypto_stream_.get(); |
62 } | 62 } |
63 | 63 |
64 protected: | 64 protected: |
65 // QuicSession methods: | 65 // QuicSession methods: |
66 virtual QuicDataStream* CreateIncomingDataStream(QuicStreamId id) OVERRIDE; | 66 virtual QuicDataStream* CreateIncomingDataStream(QuicStreamId id) OVERRIDE; |
67 virtual QuicDataStream* CreateOutgoingDataStream() OVERRIDE; | 67 virtual QuicDataStream* CreateOutgoingDataStream() OVERRIDE; |
68 virtual QuicCryptoServerStream* GetCryptoStream() OVERRIDE; | 68 virtual QuicCryptoServerStream* GetCryptoStream() OVERRIDE; |
69 | 69 |
70 // If we should create an incoming stream, returns true. Otherwise | 70 // If we should create an incoming stream, returns true. Otherwise |
71 // does error handling, including communicating the error to the client and | 71 // does error handling, including communicating the error to the client and |
72 // possibly closing the connection, and returns false. | 72 // possibly closing the connection, and returns false. |
73 virtual bool ShouldCreateIncomingDataStream(QuicStreamId id); | 73 virtual bool ShouldCreateIncomingDataStream(QuicStreamId id); |
74 | 74 |
75 virtual QuicCryptoServerStream* CreateQuicCryptoServerStream( | 75 virtual QuicCryptoServerStream* CreateQuicCryptoServerStream( |
76 const QuicCryptoServerConfig& crypto_config); | 76 const QuicCryptoServerConfig& crypto_config); |
77 | 77 |
78 private: | 78 private: |
79 friend class test::QuicServerSessionPeer; | 79 friend class test::QuicServerSessionPeer; |
80 | 80 |
81 scoped_ptr<QuicCryptoServerStream> crypto_stream_; | 81 scoped_ptr<QuicCryptoServerStream> crypto_stream_; |
82 QuicServerSessionVisitor* visitor_; | 82 QuicServerSessionVisitor* visitor_; |
83 | 83 |
84 DISALLOW_COPY_AND_ASSIGN(QuicServerSession); | 84 DISALLOW_COPY_AND_ASSIGN(QuicServerSession); |
85 }; | 85 }; |
86 | 86 |
87 } // namespace tools | 87 } // namespace tools |
88 } // namespace net | 88 } // namespace net |
89 | 89 |
90 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ | 90 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ |
OLD | NEW |