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

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

Issue 1918953003: Landing Recent QUIC changes until 4/22/2016 14:55 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deleted SpdyFramerTests missed while mergeing 120451808 Created 4 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 unified diff | Download patch
« no previous file with comments | « net/spdy/spdy_framer_test.cc ('k') | net/tools/quic/quic_dispatcher.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 // 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_TOOLS_QUIC_QUIC_DISPATCHER_H_ 8 #ifndef NET_TOOLS_QUIC_QUIC_DISPATCHER_H_
9 #define NET_TOOLS_QUIC_QUIC_DISPATCHER_H_ 9 #define NET_TOOLS_QUIC_QUIC_DISPATCHER_H_
10 10
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // of these methods. Thus, the payload of the packet is never processed in 125 // of these methods. Thus, the payload of the packet is never processed in
126 // the dispatcher. 126 // the dispatcher.
127 void OnPublicResetPacket(const QuicPublicResetPacket& packet) override; 127 void OnPublicResetPacket(const QuicPublicResetPacket& packet) override;
128 void OnVersionNegotiationPacket( 128 void OnVersionNegotiationPacket(
129 const QuicVersionNegotiationPacket& packet) override; 129 const QuicVersionNegotiationPacket& packet) override;
130 void OnDecryptedPacket(EncryptionLevel level) override; 130 void OnDecryptedPacket(EncryptionLevel level) override;
131 bool OnPacketHeader(const QuicPacketHeader& header) override; 131 bool OnPacketHeader(const QuicPacketHeader& header) override;
132 bool OnStreamFrame(const QuicStreamFrame& frame) override; 132 bool OnStreamFrame(const QuicStreamFrame& frame) override;
133 bool OnAckFrame(const QuicAckFrame& frame) override; 133 bool OnAckFrame(const QuicAckFrame& frame) override;
134 bool OnStopWaitingFrame(const QuicStopWaitingFrame& frame) override; 134 bool OnStopWaitingFrame(const QuicStopWaitingFrame& frame) override;
135 bool OnPaddingFrame(const QuicPaddingFrame& frame) override;
135 bool OnPingFrame(const QuicPingFrame& frame) override; 136 bool OnPingFrame(const QuicPingFrame& frame) override;
136 bool OnRstStreamFrame(const QuicRstStreamFrame& frame) override; 137 bool OnRstStreamFrame(const QuicRstStreamFrame& frame) override;
137 bool OnConnectionCloseFrame(const QuicConnectionCloseFrame& frame) override; 138 bool OnConnectionCloseFrame(const QuicConnectionCloseFrame& frame) override;
138 bool OnGoAwayFrame(const QuicGoAwayFrame& frame) override; 139 bool OnGoAwayFrame(const QuicGoAwayFrame& frame) override;
139 bool OnWindowUpdateFrame(const QuicWindowUpdateFrame& frame) override; 140 bool OnWindowUpdateFrame(const QuicWindowUpdateFrame& frame) override;
140 bool OnBlockedFrame(const QuicBlockedFrame& frame) override; 141 bool OnBlockedFrame(const QuicBlockedFrame& frame) override;
141 bool OnPathCloseFrame(const QuicPathCloseFrame& frame) override; 142 bool OnPathCloseFrame(const QuicPathCloseFrame& frame) override;
142 void OnPacketComplete() override; 143 void OnPacketComplete() override;
143 144
144 protected: 145 protected:
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 // The last error set by SetLastError(), which is called by 268 // The last error set by SetLastError(), which is called by
268 // framer_visitor_->OnError(). 269 // framer_visitor_->OnError().
269 QuicErrorCode last_error_; 270 QuicErrorCode last_error_;
270 271
271 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher); 272 DISALLOW_COPY_AND_ASSIGN(QuicDispatcher);
272 }; 273 };
273 274
274 } // namespace net 275 } // namespace net
275 276
276 #endif // NET_TOOLS_QUIC_QUIC_DISPATCHER_H_ 277 #endif // NET_TOOLS_QUIC_QUIC_DISPATCHER_H_
OLDNEW
« no previous file with comments | « net/spdy/spdy_framer_test.cc ('k') | net/tools/quic/quic_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698