This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / Socket.java
diff --git a/Robust/src/ClassLibrary/Socket.java b/Robust/src/ClassLibrary/Socket.java
deleted file mode 100644 (file)
index 506c327..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-public class Socket {
-  /* Data pending flag */
-  external flag IOPending;
-  /* File Descriptor */
-  int fd;
-  private SocketInputStream sin;
-  private SocketOutputStream sout;
-
-  public Socket() {
-    sin=new SocketInputStream(this);
-    sout=new SocketOutputStream(this);
-  }
-
-  public InputStream getInputStream() {
-    return sin;
-  }
-
-  public OutputStream getOutputStream() {
-    return sout;
-  }
-
-  public Socket(String host, int port) {
-    InetAddress address=InetAddress.getByName(host);
-    fd=nativeBind(address.getAddress(), port);
-    nativeConnect(fd, address.getAddress(), port);
-  }
-
-  public Socket(InetAddress address, int port) {
-    fd=nativeBind(address.getAddress(), port);
-    nativeConnect(fd, address.getAddress(), port);
-  }
-
-  public void connect(String host, int port) {
-    InetAddress address=InetAddress.getByName(host);
-    fd=nativeBind(address.getAddress(), port);
-    nativeConnect(fd, address.getAddress(), port);
-  }
-
-  public void connect(InetAddress address, int port) {
-    fd=nativeBind(address.getAddress(), port);
-    nativeConnect(fd, address.getAddress(), port);
-  }
-
-  public static native int nativeBind(byte[] address, int port);
-
-  public native int nativeConnect(int fd, byte[] address, int port);
-
-  int setFD(int filed) {
-    fd=filed;
-  }
-
-  public int read(byte[] b) {
-    return nativeRead(b);
-  }
-  public void write(byte[] b) {
-    nativeWrite(b, 0, b.length);
-  }
-
-  public void write(byte[] b, int offset, int len) {
-    nativeWrite(b, offset, len);
-  }
-
-  private native void nativeBindFD(int fd);
-  private native int nativeRead(byte[] b);
-  private native void nativeWrite(byte[] b, int offset, int len);
-  private native void nativeClose();
-
-  public void close() {
-    nativeClose();
-  }
-}