1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/* Test Multicast Sockets */
import java.net.*;
import java.io.*;
public class MulticastClient
{
public static void
main(String[] argv) throws IOException
{
System.out.println("Starting multicast tests");
System.out.println("NOTE: You need to do an 'ifconfig <interface> " +
"multicast' or this will fail on linux");
byte[] buf = { 'H', 'e', 'l', 'l', 'o', ',', ' ', 'W', 'o','r','l','d' };
/* Simple Send */
System.out.println("Test 1: Multicast send/receive test");
try
{
InetAddress addr = InetAddress.getByName("234.0.0.1");
MulticastSocket s = new MulticastSocket();
DatagramPacket p = new DatagramPacket(buf, buf.length, addr, 3333);
s.joinGroup(addr);
s.send(p);
s.close();
}
catch(IOException e)
{
System.out.println("FAILED: simple multicast send: " + e);
}
/* Options */
System.out.println("Test 2: Multicast socket options");
try
{
InetAddress addr;
MulticastSocket s = new MulticastSocket();
System.out.println("TTL = " + s.getTTL());
System.out.println("Setting TTT to 121");
s.setTTL((byte)12);
System.out.println("TTL = " + s.getTTL());
InetAddress oaddr = s.getInterface();
System.out.println("Multicast Interface = " + oaddr);
System.out.println("Setting interface to localhost");
addr = InetAddress.getByName("198.211.138.177");
s.setInterface(addr);
System.out.println("Multicast Interface = " + s.getInterface());
System.out.println("Setting interface to " + oaddr);
s.setInterface(oaddr);
System.out.println("Multicast Interface = " + s.getInterface());
}
catch(IOException e)
{
System.out.println("FAILED: multicast options: " + e);
}
}
}
|