Navigation
API > API/Plugins > API/Plugins/RemoteControlCommon
References
| Module | RemoteControlCommon |
| Header | /Engine/Plugins/VirtualProduction/RemoteControl/Source/RemoteControlCommon/Public/RemoteControlSettings.h |
| Include | #include "RemoteControlSettings.h" |
Syntax
USTRUCT&40;BlueprintType&41;
struct FRCNetworkAddress
Remarks
Utility struct to represent IPv4 Network addresses.
Variables
| Type | Name | Description | |
|---|---|---|---|
| uint8 | ClassA | Denotes the first octet of the IPv4 address (0-255.xxx.xxx.xxx) | |
| uint8 | ClassB | Denotes the second octet of the IPv4 address (xxx.0-255.xxx.xxx) | |
| uint8 | ClassC | Denotes the third octet of the IPv4 address (xxx.xxx.0-255.xxx) | |
| uint8 | ClassD | Denotes the fourth octet of the IPv4 address (xxx.xxx.xxx.0-255) |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FRCNetworkAddress
(
uint8 InClassA, |
Functions
| Type | Name | Description | |
|---|---|---|---|
| const FString | ToString () |
Retrieves the network address as string e.g. 192.168.1.1 |
Operators
| Type | Name | Description | |
|---|---|---|---|
| bool | operator==
(
const FRCNetworkAddress& OtherNetworkAddress |