Home | History | Annotate | Download | only in DNS

Lines Matching refs:Address

9  * For the IPv4 address a.b.c.d, the reverse map name is d.c.b.a.in-addr.arpa.
10 * For an IPv6 address, the reverse map name is ...ip6.arpa.
25 * Creates a reverse map name corresponding to an address contained in
26 * an array of 4 bytes (for an IPv4 address) or 16 bytes (for an IPv6 address).
27 * @param addr The address from which to build a name.
28 * @return The name corresponding to the address in the reverse map.
68 * Creates a reverse map name corresponding to an address contained in
69 * an array of 4 integers between 0 and 255 (for an IPv4 address) or 16
70 * integers between 0 and 255 (for an IPv6 address).
71 * @param addr The address from which to build a name.
72 * @return The name corresponding to the address in the reverse map.
88 * Creates a reverse map name corresponding to an address contained in
90 * @param addr The address from which to build a name.
91 * @return The name corresponding to the address in the reverse map.
99 * Creates a reverse map name corresponding to an address contained in
101 * @param addr The address from which to build a name.
102 * @return The name corresponding to the address in the reverse map.
103 * @throws UnknownHostException The string does not contain a valid address.
107 byte [] array = Address.toByteArray(addr, family);
109 throw new UnknownHostException("Invalid IP address");
114 * Creates a reverse map name corresponding to an address contained in
116 * @param addr The address from which to build a name.
117 * @return The name corresponding to the address in the reverse map.
118 * @throws UnknownHostException The string does not contain a valid address.
122 byte [] array = Address.toByteArray(addr, Address.IPv4);
124 array = Address.toByteArray(addr, Address.IPv6);
126 throw new UnknownHostException("Invalid IP address");