* 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.2 2000/03/21 12:02:29 robs Exp $
+ * $Id: FCGIGlobalDefs.java,v 1.3 2000/03/21 12:12:25 robs Exp $
*/
/* This class contains FCGI global definitions corresponding to
import java.io.PrintStream;
-public abstract class FCGIGlobalDefs {
+public abstract class FCGIGlobalDefs
+{
+ private static final String RCSID = "$Id: FCGIGlobalDefs.java,v 1.3 2000/03/21 12:12:25 robs Exp $";
public static final int def_FCGIMaxLen = 0xffff;
/*
* 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.3 2000/03/21 12:02:29 robs Exp $
+ * $Id: FCGIInputStream.java,v 1.4 2000/03/21 12:12:25 robs Exp $
*/
package com.fastcgi;
/**
* This stream manages buffered reads of FCGI messages.
*/
-public class FCGIInputStream extends InputStream {
+public class FCGIInputStream extends InputStream
+{
+ private static final String RCSID = "$Id: FCGIInputStream.java,v 1.4 2000/03/21 12:12:25 robs Exp $";
/* Stream vars */
* 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.2 2000/03/21 12:02:29 robs Exp $
+ * $Id: FCGIInterface.java,v 1.3 2000/03/21 12:12:26 robs Exp $
*/
package com.fastcgi;
* FastCGI web server. This version is single threaded, and handles one request at
* a time, which is why we can have a static variable for it.
*/
-public class FCGIInterface {
+public class FCGIInterface
+{
+ private static final String RCSID = "$Id: FCGIInterface.java,v 1.3 2000/03/21 12:12:26 robs Exp $";
/*
* Class variables
* 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.2 2000/03/21 12:02:29 robs Exp $
+ * $Id: FCGIMessage.java,v 1.3 2000/03/21 12:12:26 robs Exp $
*/
package com.fastcgi;
* dont need a stream.
*/
-public class FCGIMessage {
+public class FCGIMessage
+{
+ private static final String RCSID = "$Id: FCGIMessage.java,v 1.3 2000/03/21 12:12:26 robs Exp $";
/*
* Instance variables
* 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.2 2000/03/21 12:02:29 robs Exp $
+ * $Id: FCGIOutputStream.java,v 1.3 2000/03/21 12:12:26 robs Exp $
*/
package com.fastcgi;
* This stream understands FCGI prototcol.
*/
-public class FCGIOutputStream extends OutputStream {
+public class FCGIOutputStream
+ extends OutputStream
+{
+ private static final String RCSID = "$Id: FCGIOutputStream.java,v 1.3 2000/03/21 12:12:26 robs Exp $";
/* Stream vars */
* 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.2 2000/03/21 12:02:29 robs Exp $
+ * $Id: FCGIRequest.java,v 1.3 2000/03/21 12:12:26 robs Exp $
*/
package com.fastcgi;
import java.io.FileDescriptor;
import java.util.Properties;
-public class FCGIRequest {
+public class FCGIRequest
+{
+ private static final String RCSID = "$Id: FCGIRequest.java,v 1.3 2000/03/21 12:12:26 robs Exp $";
/* This class has no methods. Right now we are single threaded
* so there is only one request object at any given time which