FIPv4Address::FIPv4Address

Creates and initializes a new IPv4 address with the specified components.

Choose your operating system:

Windows

macOS

Linux

References

Module

Networking

Header

/Engine/Source/Runtime/Networking/Public/Interfaces/IPv4/IPv4Address.h

Include

#include "Interfaces/IPv4/IPv4Address.h"

Syntax

FIPv4Address
(
    uint8 InA,
    uint8 InB,
    uint8 InC,
    uint8 InD
)

Remarks

Creates and initializes a new IPv4 address with the specified components.

The created IP address has the value A.B.C.D.

Parameters

Parameter

Description

InA

The first component.

InB

The second component.

InC

The third component.

InD

The fourth component.