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

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

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment Created 6 years, 2 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_stream_sequencer_test.cc ('k') | net/quic/quic_time_wait_list_manager.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 // Handles packets for connection_ids in time wait state by discarding the 5 // Handles packets for connection_ids in time wait state by discarding the
6 // packet and sending the clients a public reset packet with exponential 6 // packet and sending the clients a public reset packet with exponential
7 // backoff. 7 // backoff.
8 8
9 #ifndef NET_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 9 #ifndef NET_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
10 #define NET_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 10 #define NET_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 // state. virtual to override in tests. 72 // state. virtual to override in tests.
73 virtual void ProcessPacket(const IPEndPoint& server_address, 73 virtual void ProcessPacket(const IPEndPoint& server_address,
74 const IPEndPoint& client_address, 74 const IPEndPoint& client_address,
75 QuicConnectionId connection_id, 75 QuicConnectionId connection_id,
76 QuicPacketSequenceNumber sequence_number, 76 QuicPacketSequenceNumber sequence_number,
77 const QuicEncryptedPacket& packet); 77 const QuicEncryptedPacket& packet);
78 78
79 // Called by the dispatcher when the underlying socket becomes writable again, 79 // Called by the dispatcher when the underlying socket becomes writable again,
80 // since we might need to send pending public reset packets which we didn't 80 // since we might need to send pending public reset packets which we didn't
81 // send because the underlying socket was write blocked. 81 // send because the underlying socket was write blocked.
82 virtual void OnCanWrite() OVERRIDE; 82 virtual void OnCanWrite() override;
83 83
84 // Used to delete connection_id entries that have outlived their time wait 84 // Used to delete connection_id entries that have outlived their time wait
85 // period. 85 // period.
86 void CleanUpOldConnectionIds(); 86 void CleanUpOldConnectionIds();
87 87
88 // Given a ConnectionId that exists in the time wait list, returns the 88 // Given a ConnectionId that exists in the time wait list, returns the
89 // QuicVersion associated with it. 89 // QuicVersion associated with it.
90 QuicVersion GetQuicVersionFromConnectionId(QuicConnectionId connection_id); 90 QuicVersion GetQuicVersionFromConnectionId(QuicConnectionId connection_id);
91 91
92 protected: 92 protected:
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 165
166 // Interface that manages blocked writers. 166 // Interface that manages blocked writers.
167 QuicServerSessionVisitor* visitor_; 167 QuicServerSessionVisitor* visitor_;
168 168
169 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager); 169 DISALLOW_COPY_AND_ASSIGN(QuicTimeWaitListManager);
170 }; 170 };
171 171
172 } // namespace net 172 } // namespace net
173 173
174 #endif // NET_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_ 174 #endif // NET_QUIC_QUIC_TIME_WAIT_LIST_MANAGER_H_
OLDNEW
« no previous file with comments | « net/quic/quic_stream_sequencer_test.cc ('k') | net/quic/quic_time_wait_list_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698