Package net.azib.ipscan.util

Examples of net.azib.ipscan.util.MDNSResolver.resolve()


  }

  private String resolveWithMulticastDNS(ScanningSubject subject) {
    try {
      MDNSResolver resolver = new MDNSResolver(subject.getAdaptedPortTimeout());
      String name = resolver.resolve(subject.getAddress());
      resolver.close();
      return name;
    }
    catch (SocketTimeoutException e) {
      return null;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.