Networking_IpConfig_Init Function

Header: #include <applibs/networking.h>

Initializes a Networking_IpConfig struct with the default IP configuration. The default IP configuration enables dynamic IP.

void Networking_IpConfig_Init(Networking_IpConfig *ipConfig);

Parameters

  • ipConfig A pointer to the Networking_IpConfig struct that receives the default IP configuration.

Remarks

When the Networking_IpConfig struct is no longer needed, the Networking_IpConfig_Destroy function must be called on the struct to avoid resource leaks.

Concepts and samples