Package org.cipango.dns.record

Examples of org.cipango.dns.record.AaaaRecord


 
  public List<InetAddress> lookupIpv6HostAddr(String name) throws UnknownHostException
  {
    try
    {
      List<Record> records = lookup(new AaaaRecord(name));
      List<InetAddress> addresses = new ArrayList<InetAddress>();
     
      for (Record record : records)
        if (record.getType() == Type.AAAA)
          addresses.add(((AaaaRecord) record).getAddress());
View Full Code Here

TOP

Related Classes of org.cipango.dns.record.AaaaRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.