RTFW_IPV4_CONFIGURATION Structure

RTFW_IPV4_CONFIGURATION represents an IPv4 address and a corresponding network mask for use in configuring real-time network interfaces.

Syntax

typedef struct _RTFW_IPV4_CONFIGURATION(
    TCHAR IPv4Address[RTFW_IPV4ADDRESS_LENGTH];
    TCHAR Netmask[RTFW_IPV4ADDRESS_LENGTH];
} RTFW_IPV4_CONFIGURATION, * PRTFW_IPV4_CONFIGURATION;

Members

IPv4Address

Holds an IPv4 address in dotted-quad notation.

Netmask

Holds a network mask in dotted-quad notation.

Remarks

The IPv4Address and Netmask strings must adhere to some specific rules to be considered valid and accepted:

Requirements

Minimum Required Version RTX64 3.4
Header RtfwAPI.h
Library RtfwAPI.lib

See Also:

RtfwCreateNetworkInterface

RTFW_NETWORK_INTERFACE