History | View | Annotate | Download (296 Bytes)
package sockets;
import java.io.IOException;
import server.Peer;
public class MDRSocket extends Socket {
public MDRSocket(Peer peer, String address, String port) throws IOException {
super(peer, address, port);
System.out.println("MDR: socket is active!");
}