55565758596061
* @return jmDNS instance * @exception IOException * if an exception occurs during the socket creation */ public static JmDNS create() throws IOException { return new JmDNSImpl(null, null); }
76777879808182
* @return jmDNS instance * @exception IOException * if an exception occurs during the socket creation */ public static JmDNS create(final InetAddress addr) throws IOException { return new JmDNSImpl(addr, null); }
979899100101102103
* @return jmDNS instance * @exception IOException * if an exception occurs during the socket creation */ public static JmDNS create(final String name) throws IOException { return new JmDNSImpl(null, name); }
132133134135136137138
* @return jmDNS instance * @exception IOException * if an exception occurs during the socket creation */ public static JmDNS create(final InetAddress addr, final String name) throws IOException { return new JmDNSImpl(addr, name); }
27282930313233
/** * Create an instance of JmDNS. */ public static JmDNS create() throws IOException { return new JmDNSImpl(); }
36373839404142
* Create an instance of JmDNS and bind it to a * specific network interface given its IP-address. */ public static JmDNS create(InetAddress addr) throws IOException { return new JmDNSImpl(addr); }