Navigation
API > API/Runtime > API/Runtime/NetCommon > API/Runtime/NetCommon/FPacketDataView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FPacketDataView
(
const uint8* InData, |
Constructs a view of packet data with bit-based size. | Net/Common/Packets/PacketView.h | |
FPacketDataView
(
const uint8* InData, |
Constructs a view of packet data with byte-based size. | Net/Common/Packets/PacketView.h |
FPacketDataView(const uint8 *, int32, ECountUnits::BitType)
Description
Constructs a view of packet data with bit-based size.
| Name | FPacketDataView |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Common/Public/Net/Common/Packets/PacketView.h |
| Include Path | #include "Net/Common/Packets/PacketView.h" |
FPacketDataView
(
const uint8 * InData,
int32 InCountBits,
ECountUnits::BitType
)
Parameters
| Name | Remarks |
|---|---|
| InData | Pointer to the packet data |
| InCountBits | The packet size, in bits |
| CountUnits | Whether or not the size is specified in bits (ECountUnits::Bits) or bytes (ECountUnits::Bytes) |
FPacketDataView(const uint8 *, int32, ECountUnits::ByteType)
Description
Constructs a view of packet data with byte-based size.
| Name | FPacketDataView |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Common/Public/Net/Common/Packets/PacketView.h |
| Include Path | #include "Net/Common/Packets/PacketView.h" |
FPacketDataView
(
const uint8 * InData,
int32 InCountBytes,
ECountUnits::ByteType
)
Parameters
| Name | Remarks |
|---|---|
| InData | Pointer to the packet data |
| InCountBytes | The packet size, in bytes |
| CountUnits | Whether or not the size is specified in bits (ECountUnits::Bits) or bytes (ECountUnits::Bytes) |