login: Add entrance 2 port for JP.

This commit is contained in:
Loïc Hoguin 2010-05-13 17:24:35 +02:00
parent 8220c8ad92
commit 894a6b1d9c
2 changed files with 6 additions and 4 deletions

View File

@ -22,7 +22,8 @@
-define(PATCH_PORT_US, 11230).
-define(PATCH_LISTEN_OPTIONS, [binary, {send_timeout, 5000}, {packet, 0}, {active, false}, {reuseaddr, true}]).
-define(LOGIN_PORT_JP, 12030).
-define(LOGIN_PORT_JP_ONE, 12030).
-define(LOGIN_PORT_JP_TWO, 12031).
-define(LOGIN_PORT_US, 12230).
-define(LOGIN_LISTEN_OPTIONS, [binary, {active, false}, {certfile, "ssl/servercert.pem"}, {keyfile, "ssl/serverkey.pem"}, {password, "alpha"}]).

View File

@ -26,9 +26,10 @@
%% @doc Start the login server. Currently AOTI JP and US only.
start() ->
JPPid = spawn_link(?MODULE, listen, [?LOGIN_PORT_JP, 10000001]),
USPid = spawn_link(?MODULE, listen, [?LOGIN_PORT_US, 20000001]),
[{jp, JPPid}, {us, USPid}].
JPPidE1 = spawn_link(?MODULE, listen, [?LOGIN_PORT_JP_ONE, 10000001]),
JPPidE2 = spawn_link(?MODULE, listen, [?LOGIN_PORT_JP_TWO, 20000001]),
USPid = spawn_link(?MODULE, listen, [?LOGIN_PORT_US, 30000001]),
[{jp_e1, JPPidE1}, {jp_e2, JPPidE2}, {us, USPid}].
%% @doc Listen for connections.