DnsClient |
DnsClient.lookup(String name) |
Try to lookup the A (ipv4) or AAAA (ipv6) record for the given name.
|
DnsClient |
DnsClient.lookup(String name,
Handler<AsyncResult<String>> handler) |
Try to lookup the A (ipv4) or AAAA (ipv6) record for the given name.
|
DnsClient |
DnsClient.lookup4(String name) |
Try to lookup the A (ipv4) record for the given name.
|
DnsClient |
DnsClient.lookup4(String name,
Handler<AsyncResult<String>> handler) |
Try to lookup the A (ipv4) record for the given name.
|
DnsClient |
DnsClient.lookup6(String name) |
Try to lookup the AAAA (ipv6) record for the given name.
|
DnsClient |
DnsClient.lookup6(String name,
Handler<AsyncResult<String>> handler) |
Try to lookup the AAAA (ipv6) record for the given name.
|
static DnsClient |
DnsClient.newInstance(DnsClient arg) |
|
DnsClient |
DnsClient.resolveA(String name) |
Try to resolve all A (ipv4) records for the given name.
|
DnsClient |
DnsClient.resolveA(String name,
Handler<AsyncResult<List<String>>> handler) |
Try to resolve all A (ipv4) records for the given name.
|
DnsClient |
DnsClient.resolveAAAA(String name) |
Try to resolve all AAAA (ipv6) records for the given name.
|
DnsClient |
DnsClient.resolveAAAA(String name,
Handler<AsyncResult<List<String>>> handler) |
Try to resolve all AAAA (ipv6) records for the given name.
|
DnsClient |
DnsClient.resolveCNAME(String name) |
Try to resolve the CNAME record for the given name.
|
DnsClient |
DnsClient.resolveCNAME(String name,
Handler<AsyncResult<List<String>>> handler) |
Try to resolve the CNAME record for the given name.
|
DnsClient |
DnsClient.resolveMX(String name) |
Try to resolve the MX records for the given name.
|
DnsClient |
DnsClient.resolveMX(String name,
Handler<AsyncResult<List<MxRecord>>> handler) |
Try to resolve the MX records for the given name.
|
DnsClient |
DnsClient.resolveNS(String name) |
Try to resolve the NS records for the given name.
|
DnsClient |
DnsClient.resolveNS(String name,
Handler<AsyncResult<List<String>>> handler) |
Try to resolve the NS records for the given name.
|
DnsClient |
DnsClient.resolvePTR(String name) |
Try to resolve the PTR record for the given name.
|
DnsClient |
DnsClient.resolvePTR(String name,
Handler<AsyncResult<String>> handler) |
Try to resolve the PTR record for the given name.
|
DnsClient |
DnsClient.resolveSRV(String name) |
Try to resolve the SRV records for the given name.
|
DnsClient |
DnsClient.resolveSRV(String name,
Handler<AsyncResult<List<SrvRecord>>> handler) |
Try to resolve the SRV records for the given name.
|
DnsClient |
DnsClient.resolveTXT(String name) |
Try to resolve the TXT records for the given name.
|
DnsClient |
DnsClient.resolveTXT(String name,
Handler<AsyncResult<List<String>>> handler) |
Try to resolve the TXT records for the given name.
|
DnsClient |
DnsClient.reverseLookup(String ipaddress) |
Try to do a reverse lookup of an IP address.
|
DnsClient |
DnsClient.reverseLookup(String ipaddress,
Handler<AsyncResult<String>> handler) |
Try to do a reverse lookup of an IP address.
|