-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
We already have a built-in mechanism for remapping domains (see #19841), so there's no reason people should have to configure this manually. I want to make it a built-in list auto-updated from ppsspp.org.
Let's collect all the hosts settings needed for various games:
MOHH:
86.223.243.173 pspmoh07.ea.com
86.223.243.173 pspmoh08.ea.com
86.223.243.173 tos.ea.com
DNS: 86.223.243.173 (server also works as DNS)
SOCOM:
67.222.156.250 socomftb2.psp.online.scea.com
67.222.156.250 socompsp-prod.muis.pdonline.scea.com
Twisted Metal:
67.222.156.251 tmheadonpsp-prod.pdonline.scea.com
WipEout Pulse:
145.239.30.230 wipeoutpulse.online.scee.com
145.239.30.230 wipeoutpulse.muis.online.scee.com
Motorstorm: Arctic Edge/Motorstorm: Raging Ice:
145.239.30.230 motorstormpsp.muis.online.scee.com
Actually, with #19858 , all we need to do is configure the DNS per game.
So maybe something like (in JSON, just because, and designed for maintainability):
NOTE: This json format has changed in the implementation!
{
"default": {
"dns": "67.222.156.251",
}
"MOHH": {
"ids": ["NPJH12345", "NPJH53155"],
"dns": "142.24.13.25",
"incompatible": ["Windows"],
},
"Wipeout Pulse": {
"ids": [],
},
"etc",
}anr2me, ChaCheeChoo and IrfanH495