Networking_IpType Enum

Header: #include <applibs/networking.h>

The IP configuration options for a network interface.

typedef enum {
    Networking_IpType_DhcpNone = 0,
    Networking_IpType_DhcpClient = 1
} Networking_IpType;

Values

Networking_IpType_DhcpNone

The interface doesn't have a DHCP client attached, so a static IP address must be enabled and then applied to the interface.

Networking_IpType_DhcpClient

The interface has a DHCP client attached and is configured to use dynamic IP assignment.

Remarks

This enum is used by the Networking_NetworkInterface struct.

Concepts and samples