Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: net/quic/quic_connection.h

Issue 2011653004: Remove obsolete fields in quic_protocol and their current usage in QUIC. Reorders QuicAckFrame fie… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@122721477
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/net.gypi ('k') | net/quic/quic_connection_logger.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 18 matching lines...) Expand all
29 29
30 #include "base/logging.h" 30 #include "base/logging.h"
31 #include "base/macros.h" 31 #include "base/macros.h"
32 #include "base/strings/string_piece.h" 32 #include "base/strings/string_piece.h"
33 #include "net/base/ip_address.h" 33 #include "net/base/ip_address.h"
34 #include "net/base/ip_endpoint.h" 34 #include "net/base/ip_endpoint.h"
35 #include "net/quic/crypto/quic_decrypter.h" 35 #include "net/quic/crypto/quic_decrypter.h"
36 #include "net/quic/quic_alarm.h" 36 #include "net/quic/quic_alarm.h"
37 #include "net/quic/quic_alarm_factory.h" 37 #include "net/quic/quic_alarm_factory.h"
38 #include "net/quic/quic_blocked_writer_interface.h" 38 #include "net/quic/quic_blocked_writer_interface.h"
39 #include "net/quic/quic_fec_group.h"
40 #include "net/quic/quic_framer.h" 39 #include "net/quic/quic_framer.h"
41 #include "net/quic/quic_one_block_arena.h" 40 #include "net/quic/quic_one_block_arena.h"
42 #include "net/quic/quic_packet_creator.h" 41 #include "net/quic/quic_packet_creator.h"
43 #include "net/quic/quic_packet_generator.h" 42 #include "net/quic/quic_packet_generator.h"
44 #include "net/quic/quic_packet_writer.h" 43 #include "net/quic/quic_packet_writer.h"
45 #include "net/quic/quic_protocol.h" 44 #include "net/quic/quic_protocol.h"
46 #include "net/quic/quic_received_packet_manager.h" 45 #include "net/quic/quic_received_packet_manager.h"
47 #include "net/quic/quic_sent_entropy_manager.h" 46 #include "net/quic/quic_sent_entropy_manager.h"
48 #include "net/quic/quic_sent_packet_manager_interface.h" 47 #include "net/quic/quic_sent_packet_manager_interface.h"
49 #include "net/quic/quic_time.h" 48 #include "net/quic/quic_time.h"
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 1066
1068 // If true, multipath is enabled for this connection. 1067 // If true, multipath is enabled for this connection.
1069 bool multipath_enabled_; 1068 bool multipath_enabled_;
1070 1069
1071 DISALLOW_COPY_AND_ASSIGN(QuicConnection); 1070 DISALLOW_COPY_AND_ASSIGN(QuicConnection);
1072 }; 1071 };
1073 1072
1074 } // namespace net 1073 } // namespace net
1075 1074
1076 #endif // NET_QUIC_QUIC_CONNECTION_H_ 1075 #endif // NET_QUIC_QUIC_CONNECTION_H_
OLDNEW
« no previous file with comments | « net/net.gypi ('k') | net/quic/quic_connection_logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698