Bug 1377004 - TCP FastOpen trying to narrow down a bug search 2. r=mcmanus

This commit is contained in:
Dragana Damjanovic dd.mozilla@gmail.com 2017-07-03 10:48:48 +02:00
Родитель 2e41bcc0ca
Коммит 2d08e4a243
3 изменённых файлов: 4 добавлений и 9 удалений

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

@ -4699,7 +4699,7 @@ pref("network.tcp.keepalive.retry_interval", 1); // seconds
pref("network.tcp.keepalive.probe_count", 4);
#endif
pref("network.tcp.tcp_fastopen_enable", false);
pref("network.tcp.tcp_fastopen_enable", true);
pref("network.tcp.tcp_fastopen_consecutive_failure_limit", 5);
// Whether to disable acceleration for all widgets.

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

@ -400,8 +400,8 @@ TCPFastOpenFinish(PRFileDesc *fd, PRErrorCode &err,
// We have some data ready in the buffer we will send it with the syn
// packet.
PRInt32 rv = (tfoFd->lower->methods->sendto)(tfoFd->lower,
secret->mFirstPacketBuf,
secret->mFirstPacketBufLen,
nullptr,
0,
0, //flags
&secret->mAddr,
PR_INTERVAL_NO_WAIT);

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

@ -4256,12 +4256,7 @@ nsHalfOpenSocket::SetFastOpenConnected(nsresult aError, bool aWillRetry)
mStreamOut = nullptr;
mStreamIn = nullptr;
// If backup transport ha already started put this HalfOpen back to
// mEnt list.
if (mBackupTransport) {
mEnt->mHalfOpens.AppendElement(this);
gHttpHandler->ConnMgr()->mNumHalfOpenConns++;
}
Abandon();
}
mFastOpenInProgress = false;