Navigation
API > API/Runtime > API/Runtime/Sockets > API/Runtime/Sockets/FSocket
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool JoinMulticastGroup
(
const FInternetAddr& GroupAddress |
Joins this socket to the specified multicast group. | Sockets.h | |
bool JoinMulticastGroup
(
const FInternetAddr& GroupAddress, |
Joins this socket to the specified multicast group on the specified interface. | Sockets.h |
JoinMulticastGroup(const FInternetAddr &)
Description
Joins this socket to the specified multicast group.
The multicast group address must be in the range 224.0.0.0 to 239.255.255.255.
| Name | JoinMulticastGroup |
| Type | function |
| Header File | /Engine/Source/Runtime/Sockets/Public/Sockets.h |
| Include Path | #include "Sockets.h" |
bool JoinMulticastGroup
(
const FInternetAddr & GroupAddress
)
true on success, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| GroupAddress | The IP address of the multicast group. |
See Also
-
LeaveMulticastGroup
-
SetMulticastLoopback
-
SetMulticastTtl
JoinMulticastGroup(const FInternetAddr &, const FInternetAddr &)
Description
Joins this socket to the specified multicast group on the specified interface.
The multicast group address must be in the range 224.0.0.0 to 239.255.255.255.
| Name | JoinMulticastGroup |
| Type | function |
| Header File | /Engine/Source/Runtime/Sockets/Public/Sockets.h |
| Include Path | #include "Sockets.h" |
bool JoinMulticastGroup
(
const FInternetAddr & GroupAddress,
const FInternetAddr & InterfaceAddress
)
true on success, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| GroupAddress | The IP address of the multicast group. |
| InterfaceAddress | The address representing the interface. |
See Also
-
LeaveMulticastGroup
-
SetMulticastLoopback
-
SetMulticastTtl