Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UDemoNetDriver
Description
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.
Virtual Inheritance
- UNetDriver::LowLevelSend → UDemoNetDriver::LowLevelSend
| Name | LowLevelSend |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/DemoNetDriver.h |
| Include Path | #include "Engine/DemoNetDriver.h" |
virtual void LowLevelSend
(
TSharedPtr < const FInternetAddr > Address,
void * Data,
int32 CountBits,
FOutPacketTraits & Traits
)
Parameters
| Name | Remarks |
|---|---|
| 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 |