Initial Commit

This commit is contained in:
Norman Lansing
2026-01-28 19:08:51 -05:00
commit ecb33115bf
54042 changed files with 9695586 additions and 0 deletions

View File

@@ -0,0 +1,229 @@
// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "IpNetDriver.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
void EmptyLinkFunctionForGeneratedCodeIpNetDriver() {}
// ********** Begin Cross Module References ********************************************************
ENGINE_API UClass* Z_Construct_UClass_UNetDriver();
ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_UIpNetDriver();
ONLINESUBSYSTEMUTILS_API UClass* Z_Construct_UClass_UIpNetDriver_NoRegister();
UPackage* Z_Construct_UPackage__Script_OnlineSubsystemUtils();
// ********** End Cross Module References **********************************************************
// ********** Begin Class UIpNetDriver *************************************************************
FClassRegistrationInfo Z_Registration_Info_UClass_UIpNetDriver;
UClass* UIpNetDriver::GetPrivateStaticClass()
{
using TClass = UIpNetDriver;
if (!Z_Registration_Info_UClass_UIpNetDriver.InnerSingleton)
{
GetPrivateStaticClassBody(
TClass::StaticPackage(),
TEXT("IpNetDriver"),
Z_Registration_Info_UClass_UIpNetDriver.InnerSingleton,
StaticRegisterNativesUIpNetDriver,
sizeof(TClass),
alignof(TClass),
TClass::StaticClassFlags,
TClass::StaticClassCastFlags(),
TClass::StaticConfigName(),
(UClass::ClassConstructorType)InternalConstructor<TClass>,
(UClass::ClassVTableHelperCtorCallerType)InternalVTableHelperCtorCaller<TClass>,
UOBJECT_CPPCLASS_STATICFUNCTIONS_FORCLASS(TClass),
&TClass::Super::StaticClass,
&TClass::WithinClass::StaticClass
);
}
return Z_Registration_Info_UClass_UIpNetDriver.InnerSingleton;
}
UClass* Z_Construct_UClass_UIpNetDriver_NoRegister()
{
return UIpNetDriver::GetPrivateStaticClass();
}
struct Z_Construct_UClass_UIpNetDriver_Statics
{
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
{ "IncludePath", "IpNetDriver.h" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ObjectInitializerConstructorDeclared", "" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_LogPortUnreach_MetaData[] = {
{ "Comment", "/** Should port unreachable messages be logged */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Should port unreachable messages be logged" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_AllowPlayerPortUnreach_MetaData[] = {
{ "Comment", "/** Does the game allow clients to remain after receiving ICMP port unreachable errors (handles flakey connections) */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Does the game allow clients to remain after receiving ICMP port unreachable errors (handles flakey connections)" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bExitOnBindFailure_MetaData[] = {
{ "Comment", "/** Whether to exit if binding a port failed. */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Whether to exit if binding a port failed." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxPortCountToTry_MetaData[] = {
{ "Comment", "/** Number of ports which will be tried if current one is not available for binding (i.e. if told to bind to port N, will try from N to N+MaxPortCountToTry inclusive) */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Number of ports which will be tried if current one is not available for binding (i.e. if told to bind to port N, will try from N to N+MaxPortCountToTry inclusive)" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ServerDesiredSocketReceiveBufferBytes_MetaData[] = {
{ "Comment", "/** Number of bytes that will be passed to FSocket::SetReceiveBufferSize when initializing a server. */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Number of bytes that will be passed to FSocket::SetReceiveBufferSize when initializing a server." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ServerDesiredSocketSendBufferBytes_MetaData[] = {
{ "Comment", "/** Number of bytes that will be passed to FSocket::SetSendBufferSize when initializing a server. */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Number of bytes that will be passed to FSocket::SetSendBufferSize when initializing a server." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClientDesiredSocketReceiveBufferBytes_MetaData[] = {
{ "Comment", "/** Number of bytes that will be passed to FSocket::SetReceiveBufferSize when initializing a client. */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Number of bytes that will be passed to FSocket::SetReceiveBufferSize when initializing a client." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ClientDesiredSocketSendBufferBytes_MetaData[] = {
{ "Comment", "/** Number of bytes that will be passed to FSocket::SetSendBufferSize when initializing a client. */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Number of bytes that will be passed to FSocket::SetSendBufferSize when initializing a client." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_MaxSecondsInReceive_MetaData[] = {
{ "Comment", "/** Maximum time in seconds the TickDispatch can loop on received socket data*/" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Maximum time in seconds the TickDispatch can loop on received socket data" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_NbPacketsBetweenReceiveTimeTest_MetaData[] = {
{ "Comment", "/** Nb of packets to wait before testing if the receive time went over MaxSecondsInReceive */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "Nb of packets to wait before testing if the receive time went over MaxSecondsInReceive" },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_ResolutionConnectionTimeout_MetaData[] = {
{ "Comment", "/** The amount of time to wait in seconds until we consider a connection to a resolution result as timed out */" },
{ "ModuleRelativePath", "Classes/IpNetDriver.h" },
{ "ToolTip", "The amount of time to wait in seconds until we consider a connection to a resolution result as timed out" },
};
#endif // WITH_METADATA
// ********** Begin Class UIpNetDriver constinit property declarations *****************************
static void NewProp_LogPortUnreach_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_LogPortUnreach;
static void NewProp_AllowPlayerPortUnreach_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_AllowPlayerPortUnreach;
static void NewProp_bExitOnBindFailure_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bExitOnBindFailure;
static const UECodeGen_Private::FUInt32PropertyParams NewProp_MaxPortCountToTry;
static const UECodeGen_Private::FUInt32PropertyParams NewProp_ServerDesiredSocketReceiveBufferBytes;
static const UECodeGen_Private::FUInt32PropertyParams NewProp_ServerDesiredSocketSendBufferBytes;
static const UECodeGen_Private::FUInt32PropertyParams NewProp_ClientDesiredSocketReceiveBufferBytes;
static const UECodeGen_Private::FUInt32PropertyParams NewProp_ClientDesiredSocketSendBufferBytes;
static const UECodeGen_Private::FDoublePropertyParams NewProp_MaxSecondsInReceive;
static const UECodeGen_Private::FIntPropertyParams NewProp_NbPacketsBetweenReceiveTimeTest;
static const UECodeGen_Private::FFloatPropertyParams NewProp_ResolutionConnectionTimeout;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End Class UIpNetDriver constinit property declarations *******************************
static UObject* (*const DependentSingletons[])();
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
TCppClassTypeTraits<UIpNetDriver>::IsAbstract,
};
static const UECodeGen_Private::FClassParams ClassParams;
}; // struct Z_Construct_UClass_UIpNetDriver_Statics
// ********** Begin Class UIpNetDriver Property Definitions ****************************************
void Z_Construct_UClass_UIpNetDriver_Statics::NewProp_LogPortUnreach_SetBit(void* Obj)
{
((UIpNetDriver*)Obj)->LogPortUnreach = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_LogPortUnreach = { "LogPortUnreach", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UIpNetDriver), &Z_Construct_UClass_UIpNetDriver_Statics::NewProp_LogPortUnreach_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_LogPortUnreach_MetaData), NewProp_LogPortUnreach_MetaData) };
void Z_Construct_UClass_UIpNetDriver_Statics::NewProp_AllowPlayerPortUnreach_SetBit(void* Obj)
{
((UIpNetDriver*)Obj)->AllowPlayerPortUnreach = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_AllowPlayerPortUnreach = { "AllowPlayerPortUnreach", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UIpNetDriver), &Z_Construct_UClass_UIpNetDriver_Statics::NewProp_AllowPlayerPortUnreach_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_AllowPlayerPortUnreach_MetaData), NewProp_AllowPlayerPortUnreach_MetaData) };
void Z_Construct_UClass_UIpNetDriver_Statics::NewProp_bExitOnBindFailure_SetBit(void* Obj)
{
((UIpNetDriver*)Obj)->bExitOnBindFailure = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_bExitOnBindFailure = { "bExitOnBindFailure", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(UIpNetDriver), &Z_Construct_UClass_UIpNetDriver_Statics::NewProp_bExitOnBindFailure_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bExitOnBindFailure_MetaData), NewProp_bExitOnBindFailure_MetaData) };
const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_MaxPortCountToTry = { "MaxPortCountToTry", nullptr, (EPropertyFlags)0x0010000000004000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, MaxPortCountToTry), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxPortCountToTry_MetaData), NewProp_MaxPortCountToTry_MetaData) };
const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ServerDesiredSocketReceiveBufferBytes = { "ServerDesiredSocketReceiveBufferBytes", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, ServerDesiredSocketReceiveBufferBytes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ServerDesiredSocketReceiveBufferBytes_MetaData), NewProp_ServerDesiredSocketReceiveBufferBytes_MetaData) };
const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ServerDesiredSocketSendBufferBytes = { "ServerDesiredSocketSendBufferBytes", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, ServerDesiredSocketSendBufferBytes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ServerDesiredSocketSendBufferBytes_MetaData), NewProp_ServerDesiredSocketSendBufferBytes_MetaData) };
const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ClientDesiredSocketReceiveBufferBytes = { "ClientDesiredSocketReceiveBufferBytes", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, ClientDesiredSocketReceiveBufferBytes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClientDesiredSocketReceiveBufferBytes_MetaData), NewProp_ClientDesiredSocketReceiveBufferBytes_MetaData) };
const UECodeGen_Private::FUInt32PropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ClientDesiredSocketSendBufferBytes = { "ClientDesiredSocketSendBufferBytes", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::UInt32, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, ClientDesiredSocketSendBufferBytes), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ClientDesiredSocketSendBufferBytes_MetaData), NewProp_ClientDesiredSocketSendBufferBytes_MetaData) };
const UECodeGen_Private::FDoublePropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_MaxSecondsInReceive = { "MaxSecondsInReceive", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Double, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, MaxSecondsInReceive), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_MaxSecondsInReceive_MetaData), NewProp_MaxSecondsInReceive_MetaData) };
const UECodeGen_Private::FIntPropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_NbPacketsBetweenReceiveTimeTest = { "NbPacketsBetweenReceiveTimeTest", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Int, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, NbPacketsBetweenReceiveTimeTest), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_NbPacketsBetweenReceiveTimeTest_MetaData), NewProp_NbPacketsBetweenReceiveTimeTest_MetaData) };
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ResolutionConnectionTimeout = { "ResolutionConnectionTimeout", nullptr, (EPropertyFlags)0x0040000000004000, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(UIpNetDriver, ResolutionConnectionTimeout), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_ResolutionConnectionTimeout_MetaData), NewProp_ResolutionConnectionTimeout_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UIpNetDriver_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_LogPortUnreach,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_AllowPlayerPortUnreach,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_bExitOnBindFailure,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_MaxPortCountToTry,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ServerDesiredSocketReceiveBufferBytes,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ServerDesiredSocketSendBufferBytes,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ClientDesiredSocketReceiveBufferBytes,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ClientDesiredSocketSendBufferBytes,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_MaxSecondsInReceive,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_NbPacketsBetweenReceiveTimeTest,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UIpNetDriver_Statics::NewProp_ResolutionConnectionTimeout,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIpNetDriver_Statics::PropPointers) < 2048);
// ********** End Class UIpNetDriver Property Definitions ******************************************
UObject* (*const Z_Construct_UClass_UIpNetDriver_Statics::DependentSingletons[])() = {
(UObject* (*)())Z_Construct_UClass_UNetDriver,
(UObject* (*)())Z_Construct_UPackage__Script_OnlineSubsystemUtils,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UIpNetDriver_Statics::DependentSingletons) < 16);
const UECodeGen_Private::FClassParams Z_Construct_UClass_UIpNetDriver_Statics::ClassParams = {
&UIpNetDriver::StaticClass,
"Engine",
&StaticCppClassTypeInfo,
DependentSingletons,
nullptr,
Z_Construct_UClass_UIpNetDriver_Statics::PropPointers,
nullptr,
UE_ARRAY_COUNT(DependentSingletons),
0,
UE_ARRAY_COUNT(Z_Construct_UClass_UIpNetDriver_Statics::PropPointers),
0,
0x000800ACu,
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UIpNetDriver_Statics::Class_MetaDataParams), Z_Construct_UClass_UIpNetDriver_Statics::Class_MetaDataParams)
};
void UIpNetDriver::StaticRegisterNativesUIpNetDriver()
{
}
UClass* Z_Construct_UClass_UIpNetDriver()
{
if (!Z_Registration_Info_UClass_UIpNetDriver.OuterSingleton)
{
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UIpNetDriver.OuterSingleton, Z_Construct_UClass_UIpNetDriver_Statics::ClassParams);
}
return Z_Registration_Info_UClass_UIpNetDriver.OuterSingleton;
}
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, UIpNetDriver);
UIpNetDriver::~UIpNetDriver() {}
// ********** End Class UIpNetDriver ***************************************************************
// ********** Begin Registration *******************************************************************
struct Z_CompiledInDeferFile_FID_Engine_Plugins_Online_OnlineSubsystemUtils_Source_OnlineSubsystemUtils_Classes_IpNetDriver_h__Script_OnlineSubsystemUtils_Statics
{
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
{ Z_Construct_UClass_UIpNetDriver, UIpNetDriver::StaticClass, TEXT("UIpNetDriver"), &Z_Registration_Info_UClass_UIpNetDriver, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UIpNetDriver), 2793439602U) },
};
}; // Z_CompiledInDeferFile_FID_Engine_Plugins_Online_OnlineSubsystemUtils_Source_OnlineSubsystemUtils_Classes_IpNetDriver_h__Script_OnlineSubsystemUtils_Statics
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Plugins_Online_OnlineSubsystemUtils_Source_OnlineSubsystemUtils_Classes_IpNetDriver_h__Script_OnlineSubsystemUtils_45698125{
TEXT("/Script/OnlineSubsystemUtils"),
Z_CompiledInDeferFile_FID_Engine_Plugins_Online_OnlineSubsystemUtils_Source_OnlineSubsystemUtils_Classes_IpNetDriver_h__Script_OnlineSubsystemUtils_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Plugins_Online_OnlineSubsystemUtils_Source_OnlineSubsystemUtils_Classes_IpNetDriver_h__Script_OnlineSubsystemUtils_Statics::ClassInfo),
nullptr, 0,
nullptr, 0,
};
// ********** End Registration *********************************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS