19 lines
289 B
Java
19 lines
289 B
Java
import java.net.*;
|
|
import java.io.*;
|
|
|
|
public class ServerSocketControl extends ServerSocket
|
|
{
|
|
public ServerSocketControl(int port)throws IOException
|
|
{
|
|
super(port);
|
|
}
|
|
public void accept(SocketControl socketControl)throws IOException
|
|
{
|
|
implAccept(socketControl);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|