in library/src/main/java/com/alibaba/dcm/DnsCacheManipulator.java [194:204]
public static DnsCache getWholeDnsCache() {
try {
if (isNewInetAddressImpl()) {
return InetAddressCacheUtilForNew.listInetAddressCache();
} else {
return InetAddressCacheUtilForOld.listInetAddressCache();
}
} catch (Exception e) {
throw new DnsCacheManipulatorException("Fail to getWholeDnsCache, cause: " + e, e);
}
}