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

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

Issue 309013006: Add quic_types.h and move the typedefs unrelated to the QUIC protocol (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.cc ('k') | net/quic/quic_crypto_client_stream.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 22 matching lines...) Expand all
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_types.h"
43 44
44 namespace net { 45 namespace net {
45 46
46 class QuicClock; 47 class QuicClock;
47 class QuicConfig; 48 class QuicConfig;
48 class QuicConnection; 49 class QuicConnection;
49 class QuicDecrypter; 50 class QuicDecrypter;
50 class QuicEncrypter; 51 class QuicEncrypter;
51 class QuicFecGroup; 52 class QuicFecGroup;
52 class QuicRandom; 53 class QuicRandom;
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 // If non-empty this contains the set of versions received in a 757 // If non-empty this contains the set of versions received in a
757 // version negotiation packet. 758 // version negotiation packet.
758 QuicVersionVector server_supported_versions_; 759 QuicVersionVector server_supported_versions_;
759 760
760 DISALLOW_COPY_AND_ASSIGN(QuicConnection); 761 DISALLOW_COPY_AND_ASSIGN(QuicConnection);
761 }; 762 };
762 763
763 } // namespace net 764 } // namespace net
764 765
765 #endif // NET_QUIC_QUIC_CONNECTION_H_ 766 #endif // NET_QUIC_QUIC_CONNECTION_H_
OLDNEW
« no previous file with comments | « net/quic/crypto/proof_verifier_chromium.cc ('k') | net/quic/quic_crypto_client_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698