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

Unified Diff: net/spdy/spdy_bitmasks.h

Issue 10183006: Fix kDataFlagsMask, which I missed in an earlier CL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_bitmasks.h
diff --git a/net/spdy/spdy_bitmasks.h b/net/spdy/spdy_bitmasks.h
index ed93a3388232e825c3643b52ac78659a73166ed1..1da062ece26d2d7e6b294b5996d696fbe74bb82b 100644
--- a/net/spdy/spdy_bitmasks.h
+++ b/net/spdy/spdy_bitmasks.h
@@ -22,7 +22,7 @@ const unsigned int kSpdy2PriorityMask = 0xc0;
const unsigned int kLengthMask = 0xffffff;
// Legal flags on data packets.
-const int kDataFlagsMask = 0x03;
+const int kDataFlagsMask = 0x01;
// Legal flags on control packets.
const int kControlFlagsMask = 0x03;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698