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

Unified Diff: net/spdy/spdy_framer.cc

Issue 6292013: Add chunked uploads support to SPDY (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 10 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
Index: net/spdy/spdy_framer.cc
diff --git a/net/spdy/spdy_framer.cc b/net/spdy/spdy_framer.cc
index 9a3203b0ee6b6b36cdb9495293c65e39fcd64be8..5f46a97c30388cd366d43e965598a85bb3d1f6c9 100644
--- a/net/spdy/spdy_framer.cc
+++ b/net/spdy/spdy_framer.cc
@@ -793,6 +793,9 @@ size_t SpdyFramer::ProcessDataFramePayload(const char* data, size_t len) {
visitor_->OnStreamFrameData(current_data_frame.stream_id(), NULL, 0);
CleanupDecompressorForStream(current_data_frame.stream_id());
}
+ } else if (current_data_frame.flags() & DATA_FLAG_FIN) {
willchan no longer on Chromium 2011/03/02 18:44:40 Someone else will have to verify this change is ok
Satish 2011/03/03 13:50:10 I reverted this change as mentioned above.
+ visitor_->OnStreamFrameData(current_data_frame.stream_id(), NULL, 0);
+ CleanupDecompressorForStream(current_data_frame.stream_id());
} else {
CHANGE_STATE(SPDY_AUTO_RESET);
}

Powered by Google App Engine
This is Rietveld 408576698