Added a MDNS test exec class and did some fixes
This commit is contained in:
parent
581b76687f
commit
bae988e8dd
7 changed files with 76 additions and 26 deletions
17
test/zutil/net/dns/MulticastDNSClientTest.java
Executable file
17
test/zutil/net/dns/MulticastDNSClientTest.java
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
package zutil.net.dns;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* Test class for MulticastDNSClient.
|
||||
*
|
||||
* Created by Ziver on 2016-04-26.
|
||||
*/
|
||||
public class MulticastDNSClientTest {
|
||||
|
||||
public static void main(String[] args) throws IOException {
|
||||
MulticastDNSClient mdns = new MulticastDNSClient();
|
||||
mdns.start();
|
||||
mdns.sendProbe("apple.local");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue