bug 1281293 increase marionette server listen backlog to 1 r=ato

to accept connections on Linux 4.4.
https://bugzilla.kernel.org/show_bug.cgi?id=119141

MozReview-Commit-ID: B5NMkHiGNg6

--HG--
extra : rebase_source : 1bc9322067ad8c3d2a97dfc86a90a0ad8429344f
This commit is contained in:
Karl Tomlinson 2016-06-22 09:37:40 +12:00
Родитель 4632ba11d4
Коммит b353eb8cda
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -88,7 +88,7 @@ MarionetteServer.prototype.start = function() {
if (this.forceLocal) {
flags |= Ci.nsIServerSocket.LoopbackOnly;
}
this.listener = new ServerSocket(this.port, flags, 0);
this.listener = new ServerSocket(this.port, flags, 1);
this.listener.asyncListen(this);
this.alive = true;
};