Navigation
API > API/Runtime > API/Runtime/Networking > API/Runtime/Networking/FIPv4SubnetMask
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Default constructor. | Interfaces/IPv4/IPv4SubnetMask.h | ||
FIPv4SubnetMask
(
uint32 InValue |
Creates and initializes a new IPv4 subnet mask with the specified value. | Interfaces/IPv4/IPv4SubnetMask.h | |
FIPv4SubnetMask
(
uint8 InA, |
Creates and initializes a new IPv4 subnet mask with the specified components. | Interfaces/IPv4/IPv4SubnetMask.h |
FIPv4SubnetMask()
Description
Default constructor.
| Name | FIPv4SubnetMask |
| Type | function |
| Header File | /Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4SubnetMask.h |
| Include Path | #include "Interfaces/IPv4/IPv4SubnetMask.h" |
FIPv4SubnetMask()
FIPv4SubnetMask(uint32)
Description
Creates and initializes a new IPv4 subnet mask with the specified value.
| Name | FIPv4SubnetMask |
| Type | function |
| Header File | /Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4SubnetMask.h |
| Include Path | #include "Interfaces/IPv4/IPv4SubnetMask.h" |
FIPv4SubnetMask
(
uint32 InValue
)
Parameters
| Name | Remarks |
|---|---|
| InValue | The address value (in host byte order). |
FIPv4SubnetMask(uint8, uint8, uint8, uint8)
Description
Creates and initializes a new IPv4 subnet mask with the specified components.
The created subnet mask has the value A.B.C.D.
| Name | FIPv4SubnetMask |
| Type | function |
| Header File | /Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4SubnetMask.h |
| Include Path | #include "Interfaces/IPv4/IPv4SubnetMask.h" |
FIPv4SubnetMask
(
uint8 InA,
uint8 InB,
uint8 InC,
uint8 InD
)
Parameters
| Name | Remarks |
|---|---|
| InA | The first component. |
| InB | The second component. |
| InC | The third component. |
| InD | The fourth component. |