From d0dbffb36485141d1d6a6de7e9d7235a50848972 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 5 Nov 2023 12:35:09 -0800 Subject: [PATCH] add PSOX login port --- system/config.example.json | 7 +++++-- tests/config.json | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/system/config.example.json b/system/config.example.json index a0deafb2..b958f0cc 100644 --- a/system/config.example.json +++ b/system/config.example.json @@ -74,8 +74,11 @@ "bb-patch": [11000, "patch", "patch_server_bb"], "bb-init": [12000, "bb", "data_server_bb"], - // TODO: If Xbox support ever gets built, add this port to the above config. - // "xb-login": [????, "xb", "login_server"], + // PSO Xbox tunnels its connections through the Xbox Live service (or, in + // modern times, Insignia), and that service determines which port the + // connection goes to on the server side. By default, newserv uses 9500 for + // PSO Xbox connections, but this is not hardcoded in the client. + "xb-login": [9500, "xb", "login_server"], // Schthack PSOBB uses these ports. // "bb-patch2": [10500, "patch", "patch_server_bb"], diff --git a/tests/config.json b/tests/config.json index 393e6707..05b1fa41 100644 --- a/tests/config.json +++ b/tests/config.json @@ -39,6 +39,7 @@ "gc-us12t2": [9202, "gc", "login_server"], "gc-eu3": [9203, "gc", "login_server"], "pc": [9300, "pc", "login_server"], + "xb": [9500, "xb", "login_server"], "pc-patch": [10000, "patch", "patch_server_pc"], "bb-patch": [11000, "patch", "patch_server_bb"], "bb-init": [12000, "bb", "data_server_bb"],