This method is in charge of compressing an expanded IPv6 array of hextets.
|
code » | ||
This method will convert an IPv4 to a list of 2 hextets.
For instance, 1.2.3.4 will be converted to ['0102', '0304'].
|
code » | ||
This method is in charge of expanding/exploding an IPv6 string from its
compressed form.
|
code » | ||
Parses an IP Address in a string.
If the string is malformed, the function will simply return null
instead of raising an exception.
Arguments:
Returns: goog.net.IpAddress
The IP Address or null.
|
code » | ||
Tries to parse a string represented as a host portion of an URI.
See RFC 3986 for more details on IPv6 addresses inside URI.
If the string is malformed, the function will simply return null
instead of raising an exception.
Arguments:
Returns: goog.net.IpAddress
The IP Address.
|
code » |