NetAnalytics.PercentOfDroppedPacketsToConsiderBurst

NetAnalytics.PercentOfDroppedPacketsToConsiderBurst

#Overview

name: NetAnalytics.PercentOfDroppedPacketsToConsiderBurst

This variable is created as a Console Variable (cvar).

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:23

Scope (from outer to inner):

file
namespace    NetAnalyticsCVars

Source code excerpt:

	static float PercentOfDroppedPacketsToConsiderBurst = 0.2f;
	static FAutoConsoleVariableRef CVarPercentOfDroppedPacketsToConsiderBurst(
		TEXT("NetAnalytics.PercentOfDroppedPacketsToConsiderBurst"),
		PercentOfDroppedPacketsToConsiderBurst,
		TEXT("The percentage of packets lost in a frame (in or out) for us to consider the frame as having bursts of packet loss.\n")
		TEXT("See NetAnalytics.MinimumNumberOfPacketsForBurstTracking.")
	);
}