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

Unified Diff: net/quic/quic_framer.cc

Issue 355573007: Land Recent QUIC Changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added NET_EXPORT_PRIVATE for ContainsQuicTag Created 6 years, 6 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/quic/quic_flow_controller.cc ('k') | net/quic/quic_framer_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_framer.cc
diff --git a/net/quic/quic_framer.cc b/net/quic/quic_framer.cc
index fd077bc21daf6236e9e249233a89a1501f920056..1a648b85397d9737dddd6f018c66710758ba379f 100644
--- a/net/quic/quic_framer.cc
+++ b/net/quic/quic_framer.cc
@@ -394,7 +394,7 @@ SerializedPacket QuicFramer::BuildDataPacket(
}
break;
case PING_FRAME:
- if (quic_version_ <= QUIC_VERSION_17) {
+ if (quic_version_ <= QUIC_VERSION_16) {
LOG(DFATAL) << "Attempt to add a PingFrame in "
<< QuicVersionToString(quic_version_);
return kNoPacket;
@@ -1236,7 +1236,7 @@ bool QuicFramer::ProcessFrameData(const QuicPacketHeader& header) {
continue;
}
case PING_FRAME: {
- if (quic_version_ <= QUIC_VERSION_17) {
+ if (quic_version_ <= QUIC_VERSION_16) {
LOG(DFATAL) << "Trying to read a Ping in "
<< QuicVersionToString(quic_version_);
return RaiseError(QUIC_INTERNAL_ERROR);
« no previous file with comments | « net/quic/quic_flow_controller.cc ('k') | net/quic/quic_framer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698