Bug 1425097 - We do not to close h2 connection in case one stream gets 425. r=mcmanus

--HG--
extra : rebase_source : c4b2a5633fbe74a9dfa4be419f0444cbc3eda234
This commit is contained in:
Dragana Damjanovic dd.mozilla@gmail.com 2018-01-15 08:20:00 -08:00
Родитель 65b717e2b0
Коммит 5c20da8b6c
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -1665,6 +1665,9 @@ nsHttpTransaction::HandleContentStart()
if ((mEarlyDataDisposition == EARLY_425) && !mDoNotTryEarlyData) {
mDoNotTryEarlyData = true;
mForceRestart = true; // force restart has built in loop protection
if (mConnection->Version() = HTTP_VERSION_2) {
mReuseOnRestart = true;
}
return NS_ERROR_NET_RESET;
}
break;