net.MaxIPHitLogs

net.MaxIPHitLogs

#Overview

name: net.MaxIPHitLogs

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/Plugins/Online/OnlineSubsystemUtils/Source/OnlineSubsystemUtils/Private/IpNetDriver.cpp:118

Scope (from outer to inner):

file
namespace    IPNetDriverInternal

Source code excerpt:


	static FAutoConsoleVariableRef CVarMaxIPHitLogs(
		TEXT("net.MaxIPHitLogs"),
		MaxIPHitLogs,
		TEXT("The maximum number of times to individually log a specific IP pre-connection, before aggregating further logs."),
		FConsoleVariableDelegate::CreateLambda([](IConsoleVariable* Var)
		{
			// Safe to update static here, but not CVar system cached value
			MaxIPHitLogs = FMath::Clamp(MaxIPHitLogs, 0, std::numeric_limits<int32>::max());