EtherNet/IP™ Adapter  1.04.06
User Reference Manual

◆ EI_API_ADP_getDHCP()

uint32_t EI_API_ADP_getDHCP ( T pAdp_p,
bool *  pDhcpEnabled_p 
)

Get the current DHCP setting (Instance Attribute ID: 3).

This function returns directly the DHCP flag in the return value.

Parameters
[in]pAdp_pPointer to the adapter.
[out]pDhcpEnabled_pPointer to a boolean that is set to true if DHCP is enabled and false if not.
Returns
EI_API_ADP_EError_t as uint32_t value.
Return values
EI_API_ADP_eERR_OKSuccess.
EI_API_ADP_eERR_GENERALGeneral error.
#include <api/EI_API.h>
EI_API_ADP_T* pEI_API_ADP = NULL;
uint32_t errCode;
uint8_t numInterfaces = 1;
bool bDHCP;
pEI_API_ADP = EI_API_ADP_new(numInterfaces);
errCode = EI_API_ADP_getDHCP(pEI_API_ADP, &bDHCP);
See also
EI_API_ADP_EError_t
EI_API_ADP_getDHCP
ETHIP_API uint32_t EI_API_ADP_getDHCP(T *pAdp_p, bool *pDhcpEnabled_p)
Get the current DHCP setting (Instance Attribute ID: 3).
Definition: EI_API_ADP_main.c:3539
EI_API_ADP_new
ETHIP_API T * EI_API_ADP_new(uint8_t numInterfaces_p)
Create a new EtherNet/IP adapter.
Definition: EI_API_ADP_main.c:235