OLD | NEW |
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 // 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. |
123 void DeleteSessions(); | 123 void DeleteSessions(); |
124 | 124 |
125 const SessionMap& session_map() const { return session_map_; } | 125 const SessionMap& session_map() const { return session_map_; } |
126 | 126 |
127 protected: | 127 protected: |
128 virtual QuicSession* CreateQuicSession(QuicConnectionId connection_id, | 128 virtual QuicSession* CreateQuicSession(QuicConnectionId connection_id, |
129 const IPEndPoint& server_address, | 129 const IPEndPoint& server_address, |
130 const IPEndPoint& client_address); | 130 const IPEndPoint& client_address); |
131 | 131 |
132 virtual QuicConnection* CreateQuicConnection( | |
133 QuicConnectionId connection_id, | |
134 const IPEndPoint& server_address, | |
135 const IPEndPoint& client_address); | |
136 | |
137 // Called by |framer_visitor_| when the public header has been parsed. | 132 // Called by |framer_visitor_| when the public header has been parsed. |
138 virtual bool OnUnauthenticatedPublicHeader( | 133 virtual bool OnUnauthenticatedPublicHeader( |
139 const QuicPacketPublicHeader& header); | 134 const QuicPacketPublicHeader& header); |
140 | 135 |
141 // 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 |
142 // will be owned by the dispatcher as time_wait_list_manager_ | 137 // will be owned by the dispatcher as time_wait_list_manager_ |
143 virtual QuicTimeWaitListManager* CreateQuicTimeWaitListManager(); | 138 virtual QuicTimeWaitListManager* CreateQuicTimeWaitListManager(); |
144 | 139 |
145 // Replaces the packet writer with |writer|. Takes ownership of |writer|. | 140 // Replaces the packet writer with |writer|. Takes ownership of |writer|. |
146 void set_writer(QuicServerPacketWriter* writer) { | 141 void set_writer(QuicServerPacketWriter* writer) { |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 | 246 |
252 QuicFramer framer_; | 247 QuicFramer framer_; |
253 scoped_ptr<QuicFramerVisitor> framer_visitor_; | 248 scoped_ptr<QuicFramerVisitor> framer_visitor_; |
254 | 249 |
255 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher); | 250 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher); |
256 }; | 251 }; |
257 | 252 |
258 } // namespace net | 253 } // namespace net |
259 | 254 |
260 #endif // NET_QUIC_QUIC_DISPATCHER_H_ | 255 #endif // NET_QUIC_QUIC_DISPATCHER_H_ |
OLD | NEW |