NetAnalytics.NumberOfConsecutiveDroppedPacketsToConsiderBurst
NetAnalytics.NumberOfConsecutiveDroppedPacketsToConsiderBurst
#Overview
name: NetAnalytics.NumberOfConsecutiveDroppedPacketsToConsiderBurst
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The number of packets lost in a row (in or out) for us to consider the frame as having bursts of packet loss.Not affected by NetAnalytics.MinimumNumberOfPacketsForBurstTracking.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/Net/NetAnalyticsTypes.cpp:7
Scope (from outer to inner):
file
namespace NetAnalyticsCVars
Source code excerpt:
static int32 NumberOfConsecutiveDroppedPacketsToConsiderBurst = 3;
static FAutoConsoleVariableRef CVarNumberOfDroppedPacketsToConsiderBurst(
TEXT("NetAnalytics.NumberOfConsecutiveDroppedPacketsToConsiderBurst"),
NumberOfConsecutiveDroppedPacketsToConsiderBurst,
TEXT("The number of packets lost in a row (in or out) for us to consider the frame as having bursts of packet loss.")
TEXT("Not affected by NetAnalytics.MinimumNumberOfPacketsForBurstTracking.")
);
static int32 MinimumNumberOfPacketsForBurstTracking = 5;