OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |