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

Side by Side Diff: net/tools/quic/quic_dispatcher.cc

Issue 180723003: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unintialized memory error Created 6 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 | Annotate | Revision Log
« no previous file with comments | « net/quic/test_tools/simple_quic_framer.cc ('k') | net/tools/quic/quic_server_session_test.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "net/tools/quic/quic_dispatcher.h" 5 #include "net/tools/quic/quic_dispatcher.h"
6 6
7 #include <errno.h> 7 #include <errno.h>
8 8
9 #include "base/debug/stack_trace.h" 9 #include "base/debug/stack_trace.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 } 94 }
95 virtual bool OnAckFrame(const QuicAckFrame& /*frame*/) OVERRIDE { 95 virtual bool OnAckFrame(const QuicAckFrame& /*frame*/) OVERRIDE {
96 DCHECK(false); 96 DCHECK(false);
97 return false; 97 return false;
98 } 98 }
99 virtual bool OnCongestionFeedbackFrame( 99 virtual bool OnCongestionFeedbackFrame(
100 const QuicCongestionFeedbackFrame& /*frame*/) OVERRIDE { 100 const QuicCongestionFeedbackFrame& /*frame*/) OVERRIDE {
101 DCHECK(false); 101 DCHECK(false);
102 return false; 102 return false;
103 } 103 }
104 virtual bool OnStopWaitingFrame(
105 const QuicStopWaitingFrame& /*frame*/) OVERRIDE {
106 DCHECK(false);
107 return false;
108 }
104 virtual bool OnRstStreamFrame(const QuicRstStreamFrame& /*frame*/) OVERRIDE { 109 virtual bool OnRstStreamFrame(const QuicRstStreamFrame& /*frame*/) OVERRIDE {
105 DCHECK(false); 110 DCHECK(false);
106 return false; 111 return false;
107 } 112 }
108 virtual bool OnConnectionCloseFrame( 113 virtual bool OnConnectionCloseFrame(
109 const QuicConnectionCloseFrame & /*frame*/) OVERRIDE { 114 const QuicConnectionCloseFrame & /*frame*/) OVERRIDE {
110 DCHECK(false); 115 DCHECK(false);
111 return false; 116 return false;
112 } 117 }
113 virtual bool OnGoAwayFrame(const QuicGoAwayFrame& /*frame*/) OVERRIDE { 118 virtual bool OnGoAwayFrame(const QuicGoAwayFrame& /*frame*/) OVERRIDE {
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 framer_.set_version(time_wait_list_manager_->GetQuicVersionFromGuid( 361 framer_.set_version(time_wait_list_manager_->GetQuicVersionFromGuid(
357 header.guid)); 362 header.guid));
358 363
359 // Continue parsing the packet to extract the sequence number. Then 364 // Continue parsing the packet to extract the sequence number. Then
360 // send it to the time wait manager in OnUnathenticatedHeader. 365 // send it to the time wait manager in OnUnathenticatedHeader.
361 return true; 366 return true;
362 } 367 }
363 368
364 } // namespace tools 369 } // namespace tools
365 } // namespace net 370 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/test_tools/simple_quic_framer.cc ('k') | net/tools/quic/quic_server_session_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698