* 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 {
* 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.
* 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
* 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;
* 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.
* 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