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
Parameters | Description |
---|---|
addr | Pointer to IPV6_ADDR to convert. |
buff | Pointer to a buffer to store the text representation. |
buffSize | Buffer size. |
Returns
True - An IPv6 address was successfully converted.
False - addr == 0 or buffer == 0 or supplied buffer was not large enough.
Remarks
None.