-
Notifications
You must be signed in to change notification settings - Fork 20
SendSocketSettings
huggins edited this page Apr 10, 2025
·
7 revisions
Settings that all UDP Send Sockets should contain.
struct FSendSocketSettings| Type | Name | Description |
|---|---|---|
| int32 | BufferSize | The byte size of the buffer for this send socket. |
| uint8 | MulticastTtl | The time to live for packets emitted via multicast. |
| EConnectionType | SendSocketConnectionType | Connection type to use for this send socket. |
| FString | SocketDescription | The description of this send socket. |
| Access | Name | Description |
|---|---|---|
| FSendSocketSettings() | Default constructor |
int32 BufferSizeCategory: GRILL DIS|UDP Subsystem|Structs
Byte size the buffer of the socket should have. Defaults to roughly 2MB.
uint8 MulticastTtlCategory: GRILL DIS|UDP Subsystem|Structs
The time to live for packets emitted via multicast.
EConnectionType SendSocketConnectionTypeCategory: GRILL DIS|UDP Subsystem|Structs
Connection type to use for this send socket.
FString SocketDescriptionCategory: GRILL DIS|UDP Subsystem|Structs
Friendly description of what this socket is to be used for.
FSendSocketSettings()Default constructor.