Added a MDNS test exec class and did some fixes

This commit is contained in:
Ziver Koc 2016-04-26 17:25:33 +02:00
parent 581b76687f
commit bae988e8dd
7 changed files with 76 additions and 26 deletions

View 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");
}
}