| 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 QuicSession, which demuxes a single connection to individual streams. | 5 // A QuicSession, which demuxes a single connection to individual streams. |
| 6 | 6 |
| 7 #ifndef NET_QUIC_QUIC_SESSION_H_ | 7 #ifndef NET_QUIC_QUIC_SESSION_H_ |
| 8 #define NET_QUIC_QUIC_SESSION_H_ | 8 #define NET_QUIC_QUIC_SESSION_H_ |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
| 14 #include "net/base/ip_endpoint.h" | 14 #include "net/base/ip_endpoint.h" |
| 15 #include "net/base/linked_hash_map.h" | |
| 16 #include "net/quic/quic_connection.h" | 15 #include "net/quic/quic_connection.h" |
| 17 #include "net/quic/quic_crypto_stream.h" | 16 #include "net/quic/quic_crypto_stream.h" |
| 18 #include "net/quic/quic_data_stream.h" | 17 #include "net/quic/quic_data_stream.h" |
| 19 #include "net/quic/quic_headers_stream.h" | 18 #include "net/quic/quic_headers_stream.h" |
| 20 #include "net/quic/quic_packet_creator.h" | 19 #include "net/quic/quic_packet_creator.h" |
| 21 #include "net/quic/quic_protocol.h" | 20 #include "net/quic/quic_protocol.h" |
| 22 #include "net/quic/quic_write_blocked_list.h" | 21 #include "net/quic/quic_write_blocked_list.h" |
| 23 #include "net/quic/reliable_quic_stream.h" | 22 #include "net/quic/reliable_quic_stream.h" |
| 24 | 23 |
| 25 namespace net { | 24 namespace net { |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 321 |
| 323 // Used for session level flow control. | 322 // Used for session level flow control. |
| 324 scoped_ptr<QuicFlowController> flow_controller_; | 323 scoped_ptr<QuicFlowController> flow_controller_; |
| 325 | 324 |
| 326 DISALLOW_COPY_AND_ASSIGN(QuicSession); | 325 DISALLOW_COPY_AND_ASSIGN(QuicSession); |
| 327 }; | 326 }; |
| 328 | 327 |
| 329 } // namespace net | 328 } // namespace net |
| 330 | 329 |
| 331 #endif // NET_QUIC_QUIC_SESSION_H_ | 330 #endif // NET_QUIC_QUIC_SESSION_H_ |
| OLD | NEW |