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

Unified Diff: net/spdy/spdy_test_util_common.cc

Issue 316983006: SPDY4 shouldn't emit RST_STREAM payloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/spdy/buffered_spdy_framer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_test_util_common.cc
diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
index 6b8097e5b20b0324b9a33a84d105c4a3b2e90724..e759cc5578f23383b7c5410796a242c3ffa805a8 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -921,7 +921,7 @@ SpdyFrame* SpdyTestUtil::ConstructSpdyWindowUpdate(
SpdyFrame* SpdyTestUtil::ConstructSpdyRstStream(
SpdyStreamId stream_id,
SpdyRstStreamStatus status) const {
- SpdyRstStreamIR rst_ir(stream_id, status, "RST");
+ SpdyRstStreamIR rst_ir(stream_id, status, "");
return CreateFramer(false)->SerializeRstStream(rst_ir);
}
« no previous file with comments | « net/spdy/buffered_spdy_framer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698