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

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

Issue 973683003: CL generated with data from dead-code analysis using (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Change_PrrSender_TimeUntilSend_87535917
Patch Set: Created 5 years, 9 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/quic/quic_data_writer_test.cc ('k') | net/quic/quic_packet_creator.h » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 server side dispatcher which dispatches a given client's data to their 5 // A server side dispatcher which dispatches a given client's data to their
6 // stream. 6 // stream.
7 7
8 #ifndef NET_QUIC_QUIC_DISPATCHER_H_ 8 #ifndef NET_QUIC_QUIC_DISPATCHER_H_
9 #define NET_QUIC_QUIC_DISPATCHER_H_ 9 #define NET_QUIC_QUIC_DISPATCHER_H_
10 10
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 const IPEndPoint& client_address); 130 const IPEndPoint& client_address);
131 131
132 // Called by |framer_visitor_| when the public header has been parsed. 132 // Called by |framer_visitor_| when the public header has been parsed.
133 virtual bool OnUnauthenticatedPublicHeader( 133 virtual bool OnUnauthenticatedPublicHeader(
134 const QuicPacketPublicHeader& header); 134 const QuicPacketPublicHeader& header);
135 135
136 // Create and return the time wait list manager for this dispatcher, which 136 // Create and return the time wait list manager for this dispatcher, which
137 // will be owned by the dispatcher as time_wait_list_manager_ 137 // will be owned by the dispatcher as time_wait_list_manager_
138 virtual QuicTimeWaitListManager* CreateQuicTimeWaitListManager(); 138 virtual QuicTimeWaitListManager* CreateQuicTimeWaitListManager();
139 139
140 // Replaces the packet writer with |writer|. Takes ownership of |writer|.
141 void set_writer(QuicServerPacketWriter* writer) {
142 writer_.reset(writer);
143 }
144
145 QuicTimeWaitListManager* time_wait_list_manager() { 140 QuicTimeWaitListManager* time_wait_list_manager() {
146 return time_wait_list_manager_.get(); 141 return time_wait_list_manager_.get();
147 } 142 }
148 143
149 const QuicVersionVector& supported_versions() const { 144 const QuicVersionVector& supported_versions() const {
150 return supported_versions_; 145 return supported_versions_;
151 } 146 }
152 147
153 const IPEndPoint& current_server_address() { 148 const IPEndPoint& current_server_address() {
154 return current_server_address_; 149 return current_server_address_;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 241
247 QuicFramer framer_; 242 QuicFramer framer_;
248 scoped_ptr<QuicFramerVisitor> framer_visitor_; 243 scoped_ptr<QuicFramerVisitor> framer_visitor_;
249 244
250 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher); 245 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher);
251 }; 246 };
252 247
253 } // namespace net 248 } // namespace net
254 249
255 #endif // NET_QUIC_QUIC_DISPATCHER_H_ 250 #endif // NET_QUIC_QUIC_DISPATCHER_H_
OLDNEW
« no previous file with comments | « net/quic/quic_data_writer_test.cc ('k') | net/quic/quic_packet_creator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698