-
Notifications
You must be signed in to change notification settings - Fork 16
ConnectionType
huggins edited this page May 3, 2023
·
3 revisions
Holds enums for the various types of UDP connections.
enum class EConnectionType : uint8
{
Broadcast,
Multicast,
Unicast
};
Name | Description |
---|---|
Broadcast | Used for sending UDP packets with the broadcast protocol. |
Multicast | Used for sending UDP packets with the multicast protocol. |
Unicast | Used for sending UDP packets with the unicast protocol. |