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_CORE_QUIC_SESSION_H_ | 7 #ifndef NET_QUIC_CORE_QUIC_SESSION_H_ |
8 #define NET_QUIC_CORE_QUIC_SESSION_H_ | 8 #define NET_QUIC_CORE_QUIC_SESSION_H_ |
9 | 9 |
10 #include <cstddef> | 10 #include <cstddef> |
11 #include <map> | 11 #include <map> |
12 #include <memory> | 12 #include <memory> |
13 #include <string> | 13 #include <string> |
14 #include <unordered_set> | 14 #include <unordered_set> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/compiler_specific.h" | 17 #include "base/compiler_specific.h" |
18 #include "base/macros.h" | 18 #include "base/macros.h" |
19 #include "base/strings/string_piece.h" | |
20 #include "net/quic/core/quic_connection.h" | 19 #include "net/quic/core/quic_connection.h" |
21 #include "net/quic/core/quic_crypto_stream.h" | 20 #include "net/quic/core/quic_crypto_stream.h" |
22 #include "net/quic/core/quic_packet_creator.h" | 21 #include "net/quic/core/quic_packet_creator.h" |
23 #include "net/quic/core/quic_packets.h" | 22 #include "net/quic/core/quic_packets.h" |
24 #include "net/quic/core/quic_stream.h" | 23 #include "net/quic/core/quic_stream.h" |
25 #include "net/quic/core/quic_write_blocked_list.h" | 24 #include "net/quic/core/quic_write_blocked_list.h" |
26 #include "net/quic/platform/api/quic_containers.h" | 25 #include "net/quic/platform/api/quic_containers.h" |
27 #include "net/quic/platform/api/quic_export.h" | 26 #include "net/quic/platform/api/quic_export.h" |
28 #include "net/quic/platform/api/quic_socket_address.h" | 27 #include "net/quic/platform/api/quic_socket_address.h" |
29 | 28 |
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 | 440 |
442 // Latched value of gfe2_reloadable_flag_quic_flow_control_invariant. | 441 // Latched value of gfe2_reloadable_flag_quic_flow_control_invariant. |
443 const bool flow_control_invariant_; | 442 const bool flow_control_invariant_; |
444 | 443 |
445 DISALLOW_COPY_AND_ASSIGN(QuicSession); | 444 DISALLOW_COPY_AND_ASSIGN(QuicSession); |
446 }; | 445 }; |
447 | 446 |
448 } // namespace net | 447 } // namespace net |
449 | 448 |
450 #endif // NET_QUIC_CORE_QUIC_SESSION_H_ | 449 #endif // NET_QUIC_CORE_QUIC_SESSION_H_ |
OLD | NEW |