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

Unified Diff: net/tools/quic/quic_time_wait_list_manager.cc

Issue 14287009: Land Recent QUIC Changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with Tot Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/tools/quic/quic_time_wait_list_manager.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_time_wait_list_manager.cc
diff --git a/net/tools/quic/quic_time_wait_list_manager.cc b/net/tools/quic/quic_time_wait_list_manager.cc
index db44494515be4ec0c61976356cbea0219ecd8c9b..0bf44a81b15bc594db0349009993730b846d542e 100644
--- a/net/tools/quic/quic_time_wait_list_manager.cc
+++ b/net/tools/quic/quic_time_wait_list_manager.cc
@@ -161,6 +161,33 @@ bool QuicTimeWaitListManager::OnProtocolVersionMismatch(
return false;
}
+bool QuicTimeWaitListManager::OnStreamFrame(const QuicStreamFrame& frame) {
+ return false;
+}
+
+bool QuicTimeWaitListManager::OnAckFrame(const QuicAckFrame& frame) {
+ return false;
+}
+
+bool QuicTimeWaitListManager::OnCongestionFeedbackFrame(
+ const QuicCongestionFeedbackFrame& frame) {
+ return false;
+}
+
+bool QuicTimeWaitListManager::OnRstStreamFrame(
+ const QuicRstStreamFrame& frame) {
+ return false;
+}
+
+bool QuicTimeWaitListManager::OnConnectionCloseFrame(
+ const QuicConnectionCloseFrame & frame) {
+ return false;
+}
+
+bool QuicTimeWaitListManager::OnGoAwayFrame(const QuicGoAwayFrame& frame) {
+ return false;
+}
+
bool QuicTimeWaitListManager::OnPacketHeader(const QuicPacketHeader& header) {
// TODO(satyamshekhar): Think about handling packets from different client
// addresses.
« no previous file with comments | « net/tools/quic/quic_time_wait_list_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698