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 #ifndef NET_QUIC_QUIC_MULTIPATH_SENT_PACKET_MANAGER_H_ | 5 #ifndef NET_QUIC_QUIC_MULTIPATH_SENT_PACKET_MANAGER_H_ |
6 #define NET_QUIC_QUIC_MULTIPATH_SENT_PACKET_MANAGER_H_ | 6 #define NET_QUIC_QUIC_MULTIPATH_SENT_PACKET_MANAGER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 // Returns true if the default path is in slow start. | 160 // Returns true if the default path is in slow start. |
161 bool InSlowStart() const override; | 161 bool InSlowStart() const override; |
162 | 162 |
163 // These two methods return the consecutive RTO or TLP count of the default | 163 // These two methods return the consecutive RTO or TLP count of the default |
164 // path. | 164 // path. |
165 size_t GetConsecutiveRtoCount() const override; | 165 size_t GetConsecutiveRtoCount() const override; |
166 size_t GetConsecutiveTlpCount() const override; | 166 size_t GetConsecutiveTlpCount() const override; |
167 | 167 |
168 void OnApplicationLimited() override; | 168 void OnApplicationLimited() override; |
169 | 169 |
| 170 const SendAlgorithmInterface* GetSendAlgorithm() const override; |
| 171 |
170 private: | 172 private: |
171 friend class test::QuicConnectionPeer; | 173 friend class test::QuicConnectionPeer; |
172 friend class test::QuicMultipathSentPacketManagerPeer; | 174 friend class test::QuicMultipathSentPacketManagerPeer; |
173 | 175 |
174 // State of per path sent packet manager. | 176 // State of per path sent packet manager. |
175 // TODO(fayang): Need to add a state that path can receive acks but cannot | 177 // TODO(fayang): Need to add a state that path can receive acks but cannot |
176 // send data. | 178 // send data. |
177 enum PathSentPacketManagerState { | 179 enum PathSentPacketManagerState { |
178 ACTIVE, // We both send packets and receiving acks on this path. | 180 ACTIVE, // We both send packets and receiving acks on this path. |
179 CLOSING, // We stop sending packets and receiving acks on this path. There | 181 CLOSING, // We stop sending packets and receiving acks on this path. There |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 | 214 |
213 // Does not own this delegate. | 215 // Does not own this delegate. |
214 QuicConnectionCloseDelegateInterface* delegate_; | 216 QuicConnectionCloseDelegateInterface* delegate_; |
215 | 217 |
216 DISALLOW_COPY_AND_ASSIGN(QuicMultipathSentPacketManager); | 218 DISALLOW_COPY_AND_ASSIGN(QuicMultipathSentPacketManager); |
217 }; | 219 }; |
218 | 220 |
219 } // namespace net | 221 } // namespace net |
220 | 222 |
221 #endif // NET_QUIC_QUIC_MULTIPATH_SENT_PACKET_MANAGER_H_ | 223 #endif // NET_QUIC_QUIC_MULTIPATH_SENT_PACKET_MANAGER_H_ |
OLD | NEW |