Put the classes in the com.fastcgi package
robs [Tue, 21 Mar 2000 12:02:29 +0000 (12:02 +0000)]
java/FCGIGlobalDefs.java
java/FCGIInputStream.java
java/FCGIInterface.java
java/FCGIMessage.java
java/FCGIOutputStream.java
java/FCGIRequest.java

index cd0fa8a..0e887e9 100644 (file)
  * See the file "LICENSE.TERMS" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  *
- * $Id: FCGIGlobalDefs.java,v 1.1 1999/01/31 02:45:51 roberts Exp $
+ * $Id: FCGIGlobalDefs.java,v 1.2 2000/03/21 12:02:29 robs Exp $
  */
 
 /* This class contains FCGI global definitions corresponding to
  * the #defs in the C version.
  */
+
+package com.fastcgi;
+
 import java.io.PrintStream;
 
 public abstract class FCGIGlobalDefs {
index 93c7e12..0757f46 100644 (file)
@@ -9,12 +9,11 @@
  * See the file "LICENSE.TERMS" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  *
- * $Id: FCGIInputStream.java,v 1.2 1999/07/29 13:35:50 roberts Exp $
+ * $Id: FCGIInputStream.java,v 1.3 2000/03/21 12:02:29 robs Exp $
  */
+package com.fastcgi;
 
 import java.io.*;
-import  FCGIRequest;
-import  FCGIGlobalDefs;
 
 /**
  * This stream manages buffered reads of FCGI messages.
index ae88650..5ac6081 100644 (file)
  * See the file "LICENSE.TERMS" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  *
- * $Id: FCGIInterface.java,v 1.1 1999/01/31 02:45:49 roberts Exp $
+ * $Id: FCGIInterface.java,v 1.2 2000/03/21 12:02:29 robs Exp $
  */
+package com.fastcgi;
 
 import java.net.*;
 import java.io.*;
 import java.util.Properties;
-import FCGIGlobalDefs;
-import FCGIRequest;
-import FCGIInputStream;
-import FCGIOutputStream;
-import FCGIMessage;
 
 /*
  * This is the FastCGI interface that the application calls to communicate with the
index e0a710b..4b31ee0 100644 (file)
@@ -10,8 +10,9 @@
  * See the file "LICENSE.TERMS" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  *
- * $Id: FCGIMessage.java,v 1.1 1999/01/31 02:45:52 roberts Exp $
+ * $Id: FCGIMessage.java,v 1.2 2000/03/21 12:02:29 robs Exp $
  */
+package com.fastcgi;
 
 import java.io.*;
 import java.util.Properties;
index 32fdd40..28d5db8 100644 (file)
@@ -8,14 +8,11 @@
  * See the file "LICENSE.TERMS" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  *
- * $Id: FCGIOutputStream.java,v 1.1 1999/01/31 02:45:53 roberts Exp $
+ * $Id: FCGIOutputStream.java,v 1.2 2000/03/21 12:02:29 robs Exp $
  */
+package com.fastcgi;
 
 import java.io.*;
-import  FCGIRequest;
-import  FCGIGlobalDefs;
-import  FCGIMessage;
-import  FCGIInputStream;
 
 /**
  * This stream understands FCGI prototcol.
index d1d44b9..86c27c6 100644 (file)
@@ -8,14 +8,14 @@
  * See the file "LICENSE.TERMS" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  *
- * $Id: FCGIRequest.java,v 1.1 1999/01/31 02:45:55 roberts Exp $
+ * $Id: FCGIRequest.java,v 1.2 2000/03/21 12:02:29 robs Exp $
  */
+package com.fastcgi;
 
 import java.net.*;
 import java.io.FileDescriptor;
 import java.util.Properties;
-import FCGIInputStream;
-import FCGIOutputStream;
+
 public class FCGIRequest {
 
     /* This class has no methods. Right now we are single threaded