| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 // Sends a server config update to the client, containing new bandwidth |
| 57 // estimate. |
| 58 virtual void OnCongestionWindowChange(QuicTime now) OVERRIDE; |
| 59 |
| 56 virtual ~QuicServerSession(); | 60 virtual ~QuicServerSession(); |
| 57 | 61 |
| 58 virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config); | 62 virtual void InitializeSession(const QuicCryptoServerConfig& crypto_config); |
| 59 | 63 |
| 60 const QuicCryptoServerStream* crypto_stream() const { | 64 const QuicCryptoServerStream* crypto_stream() const { |
| 61 return crypto_stream_.get(); | 65 return crypto_stream_.get(); |
| 62 } | 66 } |
| 63 | 67 |
| 64 // Override base class to process FEC config received from client. | 68 // Override base class to process FEC config received from client. |
| 65 virtual void OnConfigNegotiated() OVERRIDE; | 69 virtual void OnConfigNegotiated() OVERRIDE; |
| 66 | 70 |
| 71 void set_serving_region(string serving_region) { |
| 72 serving_region_ = serving_region; |
| 73 } |
| 74 |
| 67 protected: | 75 protected: |
| 68 // QuicSession methods: | 76 // QuicSession methods: |
| 69 virtual QuicDataStream* CreateIncomingDataStream(QuicStreamId id) OVERRIDE; | 77 virtual QuicDataStream* CreateIncomingDataStream(QuicStreamId id) OVERRIDE; |
| 70 virtual QuicDataStream* CreateOutgoingDataStream() OVERRIDE; | 78 virtual QuicDataStream* CreateOutgoingDataStream() OVERRIDE; |
| 71 virtual QuicCryptoServerStream* GetCryptoStream() OVERRIDE; | 79 virtual QuicCryptoServerStream* GetCryptoStream() OVERRIDE; |
| 72 | 80 |
| 73 // If we should create an incoming stream, returns true. Otherwise | 81 // If we should create an incoming stream, returns true. Otherwise |
| 74 // does error handling, including communicating the error to the client and | 82 // does error handling, including communicating the error to the client and |
| 75 // possibly closing the connection, and returns false. | 83 // possibly closing the connection, and returns false. |
| 76 virtual bool ShouldCreateIncomingDataStream(QuicStreamId id); | 84 virtual bool ShouldCreateIncomingDataStream(QuicStreamId id); |
| 77 | 85 |
| 78 virtual QuicCryptoServerStream* CreateQuicCryptoServerStream( | 86 virtual QuicCryptoServerStream* CreateQuicCryptoServerStream( |
| 79 const QuicCryptoServerConfig& crypto_config); | 87 const QuicCryptoServerConfig& crypto_config); |
| 80 | 88 |
| 81 private: | 89 private: |
| 82 friend class test::QuicServerSessionPeer; | 90 friend class test::QuicServerSessionPeer; |
| 83 | 91 |
| 84 scoped_ptr<QuicCryptoServerStream> crypto_stream_; | 92 scoped_ptr<QuicCryptoServerStream> crypto_stream_; |
| 85 QuicServerSessionVisitor* visitor_; | 93 QuicServerSessionVisitor* visitor_; |
| 86 | 94 |
| 95 // The most recent bandwidth estimate sent to the client. |
| 96 QuicBandwidth bandwidth_estimate_sent_to_client_; |
| 97 |
| 98 // Text describing server location. Sent to the client as part of the bandwith |
| 99 // estimate in the source-address token. Optional, can be left empty. |
| 100 string serving_region_; |
| 101 |
| 102 // Time at which we send the last SCUP to the client. |
| 103 QuicTime last_server_config_update_time_; |
| 104 |
| 87 DISALLOW_COPY_AND_ASSIGN(QuicServerSession); | 105 DISALLOW_COPY_AND_ASSIGN(QuicServerSession); |
| 88 }; | 106 }; |
| 89 | 107 |
| 90 } // namespace tools | 108 } // namespace tools |
| 91 } // namespace net | 109 } // namespace net |
| 92 | 110 |
| 93 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ | 111 #endif // NET_TOOLS_QUIC_QUIC_SERVER_SESSION_H_ |
| OLD | NEW |