Converts an IPV6 address to a colon-delimited hexidecimal string.
function IPv6AddressToStr( const AValue: TIdIPv6Address ): string;
Parameters |
Description |
AValue |
IPV6 address to convert. |
String - Colon-delimited hexadecimal represention for the address.
IPv6AddressToStr is a String function used to convert the IPV6 address in AValue to its representation as a string containing colon-delimited hexadecimal values for the 64-bit value.
IPv6AddressToStr calls IntToHex for each byte in the address to prepare the return value for the function.
Internet Direct (Indy) version 10.1.5
Copyright © 1993-2006, Chad Z. Hower (aka Kudzu) and the Indy Pit Crew. All rights reserved. Website http://www.indyproject.org. Post feedback to the Indy Documentation newsgroup. |