mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-16 04:09:07 +00:00
Remove RPCN test server
This commit is contained in:
parent
65458effa6
commit
adcacc1119
@ -190,9 +190,8 @@ bool cfg_rpcn::add_host(std::string_view new_description, std::string_view new_h
|
|||||||
|
|
||||||
bool cfg_rpcn::del_host(std::string_view del_description, std::string_view del_host)
|
bool cfg_rpcn::del_host(std::string_view del_description, std::string_view del_host)
|
||||||
{
|
{
|
||||||
// Do not delete default servers
|
// Do not delete default server
|
||||||
if ((del_description == "Official RPCN Server" && del_host == "np.rpcs3.net") ||
|
if (del_description == "Official RPCN Server" && del_host == "np.rpcs3.net")
|
||||||
(del_description == "RPCN Test Server" && del_host == "test-np.rpcs3.net"))
|
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -9,7 +9,7 @@ struct cfg_rpcn : cfg::node
|
|||||||
cfg::string npid{this, "NPID", ""};
|
cfg::string npid{this, "NPID", ""};
|
||||||
cfg::string password{this, "Password", ""};
|
cfg::string password{this, "Password", ""};
|
||||||
cfg::string token{this, "Token", ""};
|
cfg::string token{this, "Token", ""};
|
||||||
cfg::string hosts{this, "Hosts", "Official RPCN Server|np.rpcs3.net|||RPCN Test Server|test-np.rpcs3.net"};
|
cfg::string hosts{this, "Hosts", "Official RPCN Server|np.rpcs3.net"};
|
||||||
cfg::_bool ipv6_support{this, "IPv6 support", true};
|
cfg::_bool ipv6_support{this, "IPv6 support", true};
|
||||||
|
|
||||||
void load();
|
void load();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user