in library/src/main/java/com/alibaba/dcm/internal/InetAddressCacheUtilForNew.java [205:213]
public static DnsCacheEntry getInetAddressCache(String host)
throws NoSuchFieldException, IllegalAccessException, ClassNotFoundException {
final Object addresses = getCacheOfInetAddress().get(host);
if (null == addresses) {
return null;
}
return inetAddress$Addresses2DnsCacheEntry(host, addresses);
}