toIPAddressV6

@JvmStatic
@JvmName(name = "get")
fun String.toIPAddressV6(): IPAddress.V6(source)

Parses a String for its IPv6 address.

String can be either a URL containing the IPv6 address, or the IPv6 address itself.

Return

IPAddress.V6

Throws

IllegalArgumentException

if no IPv6 address is found


@JvmStatic
@JvmOverloads
@JvmName(name = "get")
fun ByteArray.toIPAddressV6(scope: String? = null): IPAddress.V6(source)

Convert network ordered bytes to an IPv6 address.

Return

IPAddress.V6

Parameters

scope

The network interface name or index number, or null.

Throws

IllegalArgumentException

if array size is not 16, or if non-null scope is an empty string or an integer less than 1.