-
Notifications
You must be signed in to change notification settings - Fork 5
ConnectionType
huggins edited this page May 10, 2023
·
1 revision
Holds enums for the various types of UDP connections.
public enum EConnectionType
{
Unicast,
Broadcast,
Multicast
}
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. |