net.MaxConstructedPartialBunchSizeBytes

net.MaxConstructedPartialBunchSizeBytes

#Overview

name: net.MaxConstructedPartialBunchSizeBytes

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

It is referenced in 2 C++ source files.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/DataChannel.cpp:98

Scope: file

Source code excerpt:

static int32 NetMaxConstructedPartialBunchSizeBytes = 1024 * 64;
static FAutoConsoleVariableRef CVarNetMaxConstructedPartialBunchSizeBytes(
	TEXT("net.MaxConstructedPartialBunchSizeBytes"),
	NetMaxConstructedPartialBunchSizeBytes,
	TEXT("The maximum size allowed for Partial Bunches.")
);

static float DormancyHysteresis = 0;
static FAutoConsoleVariableRef CVarDormancyHysteresis(

#Loc: <Workspace>/Engine/Source/Runtime/Engine/Classes/Engine/NetConnection.h:360

Scope: file

Source code excerpt:

	uint32 bReplay : 1;						// Flag to indicate a replay connection, independent of reliability
	uint32 bForceInitialDirty : 1;			// Force all properties dirty on initial replication
	uint32 bUnlimitedBunchSizeAllowed : 1;	// Ignore the value of net.MaxConstructedPartialBunchSizeBytes

public:
	struct FURL			URL;				// URL of the other side.
	
	/** The remote address of this connection, typically generated from the URL. */
	TSharedPtr<FInternetAddr>	RemoteAddr;