Skip to content

Java library to perform reverse Domain Name Service (rDNS) lookups with ease.

License

Notifications You must be signed in to change notification settings

ipregistry/ipregistry-rdns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ipregistry-rdns

Java library to perform reverse Domain Name Service (rDNS) lookups with ease.

The library is async, thread-safe and has built-in support for caching.

import co.ipregistry.rdns.ReverseDomainNameService;
import java.net.InetAddress;

final ReverseDomainNameService reverseDomainNameService = new ReverseDomainNameService();
final CompletableFuture<String> response = reverseDomainNameService.lookup(InetAddress.getByName("8.8.8.8"));
Assertions.assertEquals("dns.google", response.get());

About

Java library to perform reverse Domain Name Service (rDNS) lookups with ease.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages