blob: 1a54f99eb2f015b1e797c15e7531b975f322f162 (
plain)
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
|
/* Mulitcast Server Socket for testing */
import java.io.*;
import java.net.*;
public class MulticastServer
{
private MulticastSocket s;
public static void
main(String[] argv) throws IOException
{
MulticastServer ms = new MulticastServer(3333);
ms.run();
}
public
MulticastServer(int port) throws IOException
{
s = new MulticastSocket(port);
System.out.println("Server multicast socket created");
}
public void
run()
{
try
{
byte[] buf = new byte[255];
DatagramPacket p = new DatagramPacket(buf, buf.length);
InetAddress addr = InetAddress.getByName("234.0.0.1");
p.setLength(buf.length);
System.out.println("Joining multicast group");
s.joinGroup(addr);
System.out.print("Receiving ...");
s.receive(p);
System.out.println("");
s.leaveGroup(addr);
System.out.println("ServerDatagram: received " + p.getLength() +
" bytes from " + p.getAddress().getHostName() + ":" +
p.getPort());
System.out.println("Data: " + new String(p.getData()));
System.out.println("PASSED multicast server test");
}
catch (IOException e)
{
System.out.println("FAILED: MulticastServer caught an exception: " + e);
}
}
}
|