Reverted accidental chagnes in spdycat.cc
This commit is contained in:
parent
9893b7e2b0
commit
14d1a5a547
|
@ -269,7 +269,6 @@ void on_data_chunk_recv_callback
|
||||||
std::map<int32_t, Request*>::iterator itr =
|
std::map<int32_t, Request*>::iterator itr =
|
||||||
spdySession->streams.find(stream_id);
|
spdySession->streams.find(stream_id);
|
||||||
if(itr != spdySession->streams.end()) {
|
if(itr != spdySession->streams.end()) {
|
||||||
spdylay_submit_rst_stream(session, stream_id, SPDYLAY_PROTOCOL_ERROR);
|
|
||||||
Request *req = (*itr).second;
|
Request *req = (*itr).second;
|
||||||
if(req->inflater) {
|
if(req->inflater) {
|
||||||
while(len > 0) {
|
while(len > 0) {
|
||||||
|
@ -388,7 +387,7 @@ void on_stream_close_callback
|
||||||
(*itr).second->record_complete_time();
|
(*itr).second->record_complete_time();
|
||||||
++spdySession->complete;
|
++spdySession->complete;
|
||||||
if(spdySession->all_requests_processed()) {
|
if(spdySession->all_requests_processed()) {
|
||||||
//spdylay_submit_goaway(session, SPDYLAY_GOAWAY_OK);
|
spdylay_submit_goaway(session, SPDYLAY_GOAWAY_OK);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue