bug 798243 spdy enable reading of ping reply r=honzab

--HG--
extra : rebase_source : 358dacd3f10bac145ff40ce5e84f0c8cde540849
This commit is contained in:
Patrick McManus 2012-10-05 15:03:14 -04:00
parent 27c8b94a20
commit 7137ee34e5
2 changed files with 2 additions and 0 deletions

View File

@ -270,6 +270,7 @@ SpdySession2::ReadTimeoutTick(PRIntervalTime now)
mPingSentEpoch = 1; // avoid the 0 sentinel value
GeneratePing(mNextPingID);
mNextPingID += 2;
ResumeRecv(); // read the ping reply
if (mNextPingID == 0xffffffff) {
LOG(("SpdySession2::ReadTimeoutTick %p "

View File

@ -271,6 +271,7 @@ SpdySession3::ReadTimeoutTick(PRIntervalTime now)
mPingSentEpoch = 1; // avoid the 0 sentinel value
GeneratePing(mNextPingID);
mNextPingID += 2;
ResumeRecv(); // read the ping reply
if (mNextPingID == 0xffffffff) {
LOG(("SpdySession3::ReadTimeoutTick %p "