Skip to content

ConnectionType

huggins edited this page May 10, 2023 · 1 revision

Connection Type

Holds enums for the various types of UDP connections.

public enum EConnectionType
{
    Unicast,
    Broadcast,
    Multicast
}

Values

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.

Clone this wiki locally