зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1275917 - 1st transaction on dontresused h2 session r=hurley
This commit is contained in:
Родитель
ca9325190c
Коммит
e066471796
|
@ -384,6 +384,17 @@ Http2Session::AddStream(nsAHttpTransaction *aHttpTransaction,
|
|||
mConnection = aHttpTransaction->Connection();
|
||||
}
|
||||
|
||||
if (mClosed || mShouldGoAway) {
|
||||
nsHttpTransaction *trans = aHttpTransaction->QueryHttpTransaction();
|
||||
if (trans) {
|
||||
LOG3(("Http2Session::AddStream %p atrans=%p trans=%p session unusable - resched.\n",
|
||||
this, aHttpTransaction, trans));
|
||||
aHttpTransaction->SetConnection(nullptr);
|
||||
gHttpHandler->InitiateTransaction(trans, trans->Priority());
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
aHttpTransaction->SetConnection(this);
|
||||
|
||||
if (aUseTunnel) {
|
||||
|
|
|
@ -338,6 +338,17 @@ SpdySession31::AddStream(nsAHttpTransaction *aHttpTransaction,
|
|||
mConnection = aHttpTransaction->Connection();
|
||||
}
|
||||
|
||||
if (mClosed || mShouldGoAway) {
|
||||
nsHttpTransaction *trans = aHttpTransaction->QueryHttpTransaction();
|
||||
if (trans) {
|
||||
LOG3(("SpdySession31::AddStream %p atrans=%p trans=%p session unusable - resched.\n",
|
||||
this, aHttpTransaction, trans));
|
||||
aHttpTransaction->SetConnection(nullptr);
|
||||
gHttpHandler->InitiateTransaction(trans, trans->Priority());
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
aHttpTransaction->SetConnection(this);
|
||||
|
||||
if (aUseTunnel) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче