Namespace com.teracloud.streams.network.ipv6
Functions
- compactIPV6(rstring): Compacts a valid IPv6 address (RFC3513).
- convertIPV6AddressNumericToString(list<uint8>[16]): This function converts a sixteen-byte binary representation of an IPv6 address into a string representation.
- convertIPV6AddressStringToNumeric(rstring): This function converts a string representation of an IPv6 address into a sixteen-byte binary representation.
- expandIPV6(rstring): Expands a valid IPv6 address (RFC3513).
- isEqualTo(rstring, rstring): Returns true if ip1 and ip2 are valid IPv6 addresses and ip1 address is equal to ip2 address.
- isGreaterThan(rstring, rstring): Returns true if ip1 and ip2 are valid IPv6 addresses and ip1 address is greater than ip2 address.
- isIPV6Address(rstring): Returns true if the value parameter contains a valid IPv6 address.
- isIPV6CIDRNotation(rstring): Returns true if the networkCIDR argument contains a valid IPv6 network address in CIDR format (i.e. 2001:db8::/32). Otherwise returns false.
- isInIPRange(rstring, rstring, rstring): Returns true if startIP, endIP and ip are valid IPv6 addresses and ip falls within the range from startIP (inclusive) to endIP (exclusive).
- isInNetwork(rstring, rstring): Return true if ip address is in the network provided by the networkCIDR argument.
- isInNetworkList(list<rstring>, rstring): Return true if ip address is in at least one of the networks provided by the networkList argument.
- isLessThan(rstring, rstring): Returns true if ip1 and ip2 are valid IPv6 addresses and ip1 address is less than ip2 address.
- isLinkLocal(rstring): Returns true if a valid IPv6 address was provided and the IP address is a link-local address (RFC3513).
- isLoopback(rstring): Returns true if a valid IPv6 address was provided and the IP address is a loopback address (RFC3513).
- isMulticast(rstring): Returns true if a valid IPv6 address was provided and the IP address is a multicast address (RFC3513).
- isSiteLocal(rstring): Returns true if a valid IPv6 address was provided and the IP address is a site-local address (RFC3513).
- isUnspecified(rstring): Returns true if a valid IPv6 address was provided and the IP address is a unspecified (RFC3513).
- isV4Compatible(rstring): Returns true if a valid IPv6 address was provided and the IP address is an "IPv4-compatible IPv6 address" (RFC3513).
- isV4Mapped(rstring): Returns true if a valid IPv6 address was provided and the IP address is an "IPv4-mapped IPv6 address" (RFC3513).