net.Iris.PacketSequenceSafetyMargin
net.Iris.PacketSequenceSafetyMargin
#Overview
name: net.Iris.PacketSequenceSafetyMargin
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
How many packets to spare before considering packet sequence full. This allows a few non-DataStreamChannel packets to be sent without messing up packet acking.
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/Experimental/Iris/DataStreamChannel.cpp:40
Scope (from outer to inner):
file
namespace UE::Net::Private
Source code excerpt:
static int32 IrisPacketSequenceSafetyMargin = 4;
static FAutoConsoleVariableRef CVarIrisPacketSequenceSafetyMargin(
TEXT("net.Iris.PacketSequenceSafetyMargin"),
IrisPacketSequenceSafetyMargin,
TEXT("How many packets to spare before considering packet sequence full. This allows a few non-DataStreamChannel packets to be sent without messing up packet acking."
));
}
UDataStreamChannel::UDataStreamChannel(const FObjectInitializer& ObjectInitializer)