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

Unified Diff: net/spdy/spdy_session.cc

Issue 246073007: SPDY & HPACK: Land recent internal changes (through 65328503) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on upstream change: Expanded FRAME_TOO_LARGE/FRAME_SIZE_ERROR comment. Created 6 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 | « net/spdy/spdy_session.h ('k') | net/spdy/spdy_session_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_session.cc
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index 17a6c4bebb043dba9aeafa6be7c5e1a0cda2630a..4c4900f5d8fd937612fa522491050cdc4459a867 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -323,8 +323,14 @@ SpdyProtocolErrorDetails MapRstStreamStatusToProtocolError(
return STATUS_CODE_STREAM_ALREADY_CLOSED;
case RST_STREAM_INVALID_CREDENTIALS:
return STATUS_CODE_INVALID_CREDENTIALS;
- case RST_STREAM_FRAME_TOO_LARGE:
- return STATUS_CODE_FRAME_TOO_LARGE;
+ case RST_STREAM_FRAME_SIZE_ERROR:
+ return STATUS_CODE_FRAME_SIZE_ERROR;
+ case RST_STREAM_SETTINGS_TIMEOUT:
+ return STATUS_CODE_SETTINGS_TIMEOUT;
+ case RST_STREAM_CONNECT_ERROR:
+ return STATUS_CODE_CONNECT_ERROR;
+ case RST_STREAM_ENHANCE_YOUR_CALM:
+ return STATUS_CODE_ENHANCE_YOUR_CALM;
default:
NOTREACHED();
return static_cast<SpdyProtocolErrorDetails>(-1);
« no previous file with comments | « net/spdy/spdy_session.h ('k') | net/spdy/spdy_session_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698