зеркало из https://github.com/mozilla/pjs.git
Bug 636154 - server.js limits custom ports to 31999, we should make this 64K. r=ted, a=test-only
This commit is contained in:
Родитель
2891872b24
Коммит
f6090a8f0d
|
@ -174,7 +174,7 @@ function runServer()
|
|||
}
|
||||
|
||||
if (typeof(_SERVER_PORT) != "undefined") {
|
||||
if (parseInt(_SERVER_PORT) > 0 && parseInt(_SERVER_PORT) < 32000)
|
||||
if (parseInt(_SERVER_PORT) > 0 && parseInt(_SERVER_PORT) < 65536)
|
||||
SERVER_PORT = _SERVER_PORT;
|
||||
} else {
|
||||
throw "please define _SERVER_PORT (as a port number) before running server.js";
|
||||
|
|
Загрузка…
Ссылка в новой задаче