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 // The entity that handles framing writes for a Quic client or server. | 5 // The entity that handles framing writes for a Quic client or server. |
6 // Each QuicSession will have a connection associated with it. | 6 // Each QuicSession will have a connection associated with it. |
7 // | 7 // |
8 // On the server side, the Dispatcher handles the raw reads, and hands off | 8 // On the server side, the Dispatcher handles the raw reads, and hands off |
9 // packets via ProcessUdpPacket for framing and processing. | 9 // packets via ProcessUdpPacket for framing and processing. |
10 // | 10 // |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "net/quic/quic_alarm.h" | 33 #include "net/quic/quic_alarm.h" |
34 #include "net/quic/quic_blocked_writer_interface.h" | 34 #include "net/quic/quic_blocked_writer_interface.h" |
35 #include "net/quic/quic_connection_stats.h" | 35 #include "net/quic/quic_connection_stats.h" |
36 #include "net/quic/quic_packet_creator.h" | 36 #include "net/quic/quic_packet_creator.h" |
37 #include "net/quic/quic_packet_generator.h" | 37 #include "net/quic/quic_packet_generator.h" |
38 #include "net/quic/quic_packet_writer.h" | 38 #include "net/quic/quic_packet_writer.h" |
39 #include "net/quic/quic_protocol.h" | 39 #include "net/quic/quic_protocol.h" |
40 #include "net/quic/quic_received_packet_manager.h" | 40 #include "net/quic/quic_received_packet_manager.h" |
41 #include "net/quic/quic_sent_entropy_manager.h" | 41 #include "net/quic/quic_sent_entropy_manager.h" |
42 #include "net/quic/quic_sent_packet_manager.h" | 42 #include "net/quic/quic_sent_packet_manager.h" |
| 43 #include "net/quic/quic_time.h" |
43 #include "net/quic/quic_types.h" | 44 #include "net/quic/quic_types.h" |
44 | 45 |
45 namespace net { | 46 namespace net { |
46 | 47 |
47 class QuicClock; | 48 class QuicClock; |
48 class QuicConfig; | 49 class QuicConfig; |
49 class QuicConnection; | 50 class QuicConnection; |
50 class QuicDecrypter; | 51 class QuicDecrypter; |
51 class QuicEncrypter; | 52 class QuicEncrypter; |
52 class QuicFecGroup; | 53 class QuicFecGroup; |
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
805 // If non-empty this contains the set of versions received in a | 806 // If non-empty this contains the set of versions received in a |
806 // version negotiation packet. | 807 // version negotiation packet. |
807 QuicVersionVector server_supported_versions_; | 808 QuicVersionVector server_supported_versions_; |
808 | 809 |
809 DISALLOW_COPY_AND_ASSIGN(QuicConnection); | 810 DISALLOW_COPY_AND_ASSIGN(QuicConnection); |
810 }; | 811 }; |
811 | 812 |
812 } // namespace net | 813 } // namespace net |
813 | 814 |
814 #endif // NET_QUIC_QUIC_CONNECTION_H_ | 815 #endif // NET_QUIC_QUIC_CONNECTION_H_ |
OLD | NEW |