PingPongInterval
PingPongInterval
#Overview
name: PingPongInterval
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>/Engine/Config/BaseEngine.ini:81, section: [WebSockets.LibWebSockets]
- INI Section:
WebSockets.LibWebSockets
- Raw value:
0
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Online/WebSockets/Private/Lws/LwsWebSocketsManager.cpp:113
Scope (from outer to inner):
file
function void FLwsWebSocketsManager::InitWebSockets
Source code excerpt:
ContextInfo.pt_serv_buf_size = MaxHttpHeaderData;
int32 PingPongInterval = 0;
GConfig->GetInt(TEXT("WebSockets.LibWebSockets"), TEXT("PingPongInterval"), PingPongInterval, GEngineIni);
ContextInfo.ws_ping_pong_interval = PingPongInterval;
// HTTP proxy
const FString& ProxyAddress = FHttpModule::Get().GetProxyAddress();
TOptional<FTCHARToUTF8> Converter;
if (!ProxyAddress.IsEmpty())
{