Home
last modified time | relevance | path

Searched refs:pAddresses (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/standard/
H A Dnet.c157 PIP_ADAPTER_ADDRESSES pAddresses = NULL, p; in PHP_FUNCTION() local
166 if (GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen) == ERROR_BUFFER_OVERFLOW) { in PHP_FUNCTION()
167 FREE(pAddresses); in PHP_FUNCTION()
168 pAddresses = (IP_ADAPTER_ADDRESSES *) MALLOC(outBufLen); in PHP_FUNCTION()
171 if (pAddresses == NULL) { in PHP_FUNCTION()
176 dwRetVal = GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen); in PHP_FUNCTION()
182 FREE(pAddresses); in PHP_FUNCTION()
187 for (p = pAddresses; p; p = p->Next) { in PHP_FUNCTION()
261 FREE(pAddresses); in PHP_FUNCTION()

Completed in 4 milliseconds