Class java.net.MulticastSocket (1.1)
public final class MulticastSocket extends DatagramSocket {
// Public Constructors
public MulticastSocket( ) throws IOException;
public MulticastSocket(int port) throws IOException;
// Public Instance Methods
public InetAddress getInterface( ) throws SocketException;
public void joinGroup(InetAddress mcastaddr) throws IOException;
public void leaveGroup(InetAddress mcastaddr) throws IOException;
public synchronized void send(DatagramPacket p, byte ttl) throws IOException;
public void setInterface(InetAddress inf) throws SocketException;
}