This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / ServerSocket.java
diff --git a/Robust/src/ClassLibrary/ServerSocket.java b/Robust/src/ClassLibrary/ServerSocket.java
deleted file mode 100644 (file)
index 723e886..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-public class ServerSocket {
-  /* Socket pending flag */
-  external flag SocketPending;
-  /* File Descriptor */
-  int fd;
-
-  private native int createSocket(int port);
-
-  public ServerSocket(int port) {
-    this.fd=createSocket(port);
-  }
-
-  public Socket accept() {
-    Socket s=new Socket();
-    int newfd=nativeaccept(s);
-    s.setFD(newfd);
-    return s;
-  }
-
-  public Socket accept(tag td) {
-    Socket s=new Socket() {
-    } {td};
-    int newfd=nativeaccept(s);
-    s.setFD(newfd);
-    return s;
-  }
-
-  /* Lets caller pass in their own Socket object. */
-  public void accept(Socket s) {
-    int newfd=nativeaccept(s);
-    s.setFD(newfd);
-  }
-
-  private native int nativeaccept(Socket s);
-
-  public void close();
-
-}