Bug 636154 - server.js limits custom ports to 31999, we should make this 64K. r=ted, a=test-only

This commit is contained in:
Joel Maher 2011-02-23 14:39:01 -05:00
Родитель 2891872b24
Коммит f6090a8f0d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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";