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

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

Issue 839143002: Roll Chrome into Mojo. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Rebase Created 5 years, 11 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_crypto_server_stream_test.cc ('k') | net/quic/quic_dispatcher.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 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 void OnCanWrite() override; 101 void OnCanWrite() override;
102 102
103 // QuicServerSessionVisitor interface implementation: 103 // QuicServerSessionVisitor interface implementation:
104 // Ensure that the closed connection is cleaned up asynchronously. 104 // Ensure that the closed connection is cleaned up asynchronously.
105 void OnConnectionClosed(QuicConnectionId connection_id, 105 void OnConnectionClosed(QuicConnectionId connection_id,
106 QuicErrorCode error) override; 106 QuicErrorCode error) override;
107 107
108 // Queues the blocked writer for later resumption. 108 // Queues the blocked writer for later resumption.
109 void OnWriteBlocked(QuicBlockedWriterInterface* blocked_writer) override; 109 void OnWriteBlocked(QuicBlockedWriterInterface* blocked_writer) override;
110 110
111 // Called whenever the QuicTimeWaitListManager adds a new connection to the
112 // time-wait list.
113 void OnConnectionAddedToTimeWaitList(QuicConnectionId connection_id) override;
114
115 // Called whenever the QuicTimeWaitListManager removes an old connection from
116 // the time-wait list.
117 void OnConnectionRemovedFromTimeWaitList(
118 QuicConnectionId connection_id) override;
119
111 typedef base::hash_map<QuicConnectionId, QuicSession*> SessionMap; 120 typedef base::hash_map<QuicConnectionId, QuicSession*> SessionMap;
112 121
113 // Deletes all sessions on the closed session list and clears the list. 122 // Deletes all sessions on the closed session list and clears the list.
114 void DeleteSessions(); 123 void DeleteSessions();
115 124
116 const SessionMap& session_map() const { return session_map_; } 125 const SessionMap& session_map() const { return session_map_; }
117 126
118 protected: 127 protected:
119 virtual QuicSession* CreateQuicSession(QuicConnectionId connection_id, 128 virtual QuicSession* CreateQuicSession(QuicConnectionId connection_id,
120 const IPEndPoint& server_address, 129 const IPEndPoint& server_address,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 251
243 QuicFramer framer_; 252 QuicFramer framer_;
244 scoped_ptr<QuicFramerVisitor> framer_visitor_; 253 scoped_ptr<QuicFramerVisitor> framer_visitor_;
245 254
246 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher); 255 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher);
247 }; 256 };
248 257
249 } // namespace net 258 } // namespace net
250 259
251 #endif // NET_QUIC_QUIC_DISPATCHER_H_ 260 #endif // NET_QUIC_QUIC_DISPATCHER_H_
OLDNEW
« no previous file with comments | « net/quic/quic_crypto_server_stream_test.cc ('k') | net/quic/quic_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698