USteamSocketsNetDriver::LowLevelSend

Sends a 'connectionless' (not associated with a UNetConection) packet, to the specified address.

Windows
MacOS
Linux

Override Hierarchy

UNetDriver::LowLevelSend()

USteamSocketsNetDriver::LowLevelSend()

References

Module

SteamSockets

Header

/Engine/Plugins/Runtime/Steam/SteamSockets/Source/SteamSockets/Public/SteamSocketsNetDriver.h

Include

#include "SteamSocketsNetDriver.h"

Source

/Engine/Plugins/Runtime/Steam/SteamSockets/Source/SteamSockets/Private/SteamSocketsNetDriver.cpp

Syntax

virtual void LowLevelSend
(
    TSharedPtr< const FInternetAddr > Address,
    void * Data,
    int32 CountBits,
    FOutPacketTraits & Traits
)

Remarks

Sends a 'connectionless' (not associated with a UNetConection) packet, to the specified address. NOTE: Address is an abstract format defined by subclasses. Anything calling this, must use an address supplied by the net driver.

Parameters

Parameter

Description

Address

The address the packet should be sent to (format is abstract, determined by net driver subclasses)

Data

The packet data

CountBits

The size of the packet data, in bits

Traits

Traits for the packet, if applicable

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss