Initial
This commit is contained in:
18
java/JCHAT/ServerSocketControl.java
Normal file
18
java/JCHAT/ServerSocketControl.java
Normal file
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user