mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Core/Config: Add index entries to NetPlaySettings
This commit is contained in:
parent
827e40d78a
commit
622ba68595
@ -19,6 +19,15 @@ const ConfigInfo<std::string> NETPLAY_TRAVERSAL_SERVER{{System::Main, "NetPlay",
|
||||
const ConfigInfo<u16> NETPLAY_TRAVERSAL_PORT{{System::Main, "NetPlay", "TraversalPort"}, 6262};
|
||||
const ConfigInfo<std::string> NETPLAY_TRAVERSAL_CHOICE{{System::Main, "NetPlay", "TraversalChoice"},
|
||||
"direct"};
|
||||
const ConfigInfo<std::string> NETPLAY_INDEX_URL{{System::Main, "NetPlay", "IndexServer"},
|
||||
"https://dolphin-emu.org/lobby"};
|
||||
|
||||
const ConfigInfo<bool> NETPLAY_USE_INDEX{{System::Main, "NetPlay", "UseIndex"}, false};
|
||||
const ConfigInfo<std::string> NETPLAY_INDEX_NAME{{System::Main, "NetPlay", "IndexName"}, ""};
|
||||
const ConfigInfo<std::string> NETPLAY_INDEX_REGION{{System::Main, "NetPlay", "IndexRegion"}, ""};
|
||||
const ConfigInfo<std::string> NETPLAY_INDEX_PASSWORD{{System::Main, "NetPlay", "IndexPassword"},
|
||||
""};
|
||||
|
||||
const ConfigInfo<std::string> NETPLAY_HOST_CODE{{System::Main, "NetPlay", "HostCode"}, "00000000"};
|
||||
|
||||
const ConfigInfo<u16> NETPLAY_HOST_PORT{{System::Main, "NetPlay", "HostPort"}, DEFAULT_LISTEN_PORT};
|
||||
|
@ -19,6 +19,7 @@ extern const ConfigInfo<std::string> NETPLAY_TRAVERSAL_SERVER;
|
||||
extern const ConfigInfo<u16> NETPLAY_TRAVERSAL_PORT;
|
||||
extern const ConfigInfo<std::string> NETPLAY_TRAVERSAL_CHOICE;
|
||||
extern const ConfigInfo<std::string> NETPLAY_HOST_CODE;
|
||||
extern const ConfigInfo<std::string> NETPLAY_INDEX_URL;
|
||||
|
||||
extern const ConfigInfo<u16> NETPLAY_HOST_PORT;
|
||||
extern const ConfigInfo<std::string> NETPLAY_ADDRESS;
|
||||
@ -30,6 +31,11 @@ extern const ConfigInfo<bool> NETPLAY_USE_UPNP;
|
||||
|
||||
extern const ConfigInfo<bool> NETPLAY_ENABLE_QOS;
|
||||
|
||||
extern const ConfigInfo<bool> NETPLAY_USE_INDEX;
|
||||
extern const ConfigInfo<std::string> NETPLAY_INDEX_REGION;
|
||||
extern const ConfigInfo<std::string> NETPLAY_INDEX_NAME;
|
||||
extern const ConfigInfo<std::string> NETPLAY_INDEX_PASSWORD;
|
||||
|
||||
extern const ConfigInfo<bool> NETPLAY_ENABLE_CHUNKED_UPLOAD_LIMIT;
|
||||
extern const ConfigInfo<u32> NETPLAY_CHUNKED_UPLOAD_LIMIT;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user