Navigation
API > API/Runtime > API/Runtime/Networking > API/Runtime/Networking/FIPv4Address
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FIPv4Address () |
Default constructor. | Interfaces/IPv4/IPv4Address.h | |
FIPv4Address
(
uint32 InValue |
Creates and initializes a new IPv4 address with the specified value. | Interfaces/IPv4/IPv4Address.h | |
FIPv4Address
(
uint8 InA, |
Creates and initializes a new IPv4 address with the specified components. | Interfaces/IPv4/IPv4Address.h |
FIPv4Address()
Description
Default constructor.
| Name | FIPv4Address |
| Type | function |
| Header File | /Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4Address.h |
| Include Path | #include "Interfaces/IPv4/IPv4Address.h" |
FIPv4Address()
FIPv4Address(uint32)
Description
Creates and initializes a new IPv4 address with the specified value.
| Name | FIPv4Address |
| Type | function |
| Header File | /Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4Address.h |
| Include Path | #include "Interfaces/IPv4/IPv4Address.h" |
FIPv4Address
(
uint32 InValue
)
Parameters
| Name | Remarks |
|---|---|
| InValue | The address value (in host byte order). |
FIPv4Address(uint8, uint8, uint8, uint8)
Description
Creates and initializes a new IPv4 address with the specified components.
The created IP address has the value A.B.C.D.
| Name | FIPv4Address |
| Type | function |
| Header File | /Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4Address.h |
| Include Path | #include "Interfaces/IPv4/IPv4Address.h" |
FIPv4Address
(
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. |