TCPIP_Helper_IPv6AddressToString Function

C

bool TCPIP_Helper_IPv6AddressToString(
    const IPV6_ADDR * addr, 
    char* buff, 
    size_t buffSize
);

Description

This function converts an IPV6_ADDR to a text representation of an IPv6 address.

Preconditions

None.

Parameters

ParametersDescription
addrPointer to IPV6_ADDR to convert.
buffPointer to a buffer to store the text representation.
buffSizeBuffer size.

Returns

  • True - An IPv6 address was successfully converted.

  • False - addr == 0 or buffer == 0 or supplied buffer was not large enough.

Remarks

None.