bUseLocalIPs
bUseLocalIPs
#Overview
name: bUseLocalIPs
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Projects/Lyra/Config/Custom/SteamEOS/DefaultEngine.ini:7, section: [OnlineSubsystemEOS]
- INI Section:
OnlineSubsystemEOS
- Raw value:
false
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Online/OnlineSubsystemEOS/Source/OnlineSubsystemEOS/Private/OnlineSessionEOS.cpp:1516
Scope (from outer to inner):
file
function uint32 FOnlineSessionEOS::CreateEOSSession
Source code excerpt:
else
{
const bool bUseLocalIPs = FParse::Param(FCommandLine::Get(), TEXT("UseLocalIPs"));
if (bUseLocalIPs)
{
bool bCanBindAll;
HostAddr = ISocketSubsystem::Get(PLATFORM_SOCKETSUBSYSTEM)->GetLocalHostAddr(*GLog, bCanBindAll)->ToString(false);
}
}