home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-08-05 | 413 b | 18 lines |
- import java.io.IOException;
- import java.lang.SecurityException;
- import java.net.Socket;
- import java.net.ServerSocket;
-
- public class BOServerSocket extends ServerSocket {
- public BOServerSocket(int port) throws IOException {
- super(port);
- }
-
- public BOSocket accept_any() throws IOException {
- BOSocket s = new BOSocket();
- try { implAccept(s); } catch (SecurityException se) { }
- return s;
- }
- }
-
-