Skip to content

ConnectionType

huggins edited this page May 3, 2023 · 3 revisions

Connection Type

Holds enums for the various types of UDP connections.

enum class EConnectionType : uint8
{
	Broadcast,
	Multicast,
	Unicast
};

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