Put the RCS keyword '$Id: $' in each of the classes.
robs [Tue, 21 Mar 2000 12:12:25 +0000 (12:12 +0000)]
java/FCGIGlobalDefs.java
java/FCGIInputStream.java
java/FCGIInterface.java
java/FCGIMessage.java
java/FCGIOutputStream.java
java/FCGIRequest.java

index 0e887e9..04de745 100644 (file)
@@ -10,7 +10,7 @@
  * 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
@@ -21,7 +21,9 @@ package com.fastcgi;
 
 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;
     /*
index 0757f46..4d3550d 100644 (file)
@@ -9,7 +9,7 @@
  * 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;
 
@@ -18,7 +18,9 @@ import java.io.*;
 /**
  * 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 */
 
index 5ac6081..f5f7dda 100644 (file)
@@ -10,7 +10,7 @@
  * 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;
 
@@ -23,7 +23,9 @@ import java.util.Properties;
  * 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
index 4b31ee0..d321844 100644 (file)
@@ -10,7 +10,7 @@
  * 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;
 
@@ -24,7 +24,9 @@ import java.util.Properties;
  * 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
index 28d5db8..503bda1 100644 (file)
@@ -8,7 +8,7 @@
  * 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;
 
@@ -18,7 +18,10 @@ import java.io.*;
  * 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 */
 
index 86c27c6..0237b3e 100644 (file)
@@ -8,7 +8,7 @@
  * 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;
 
@@ -16,7 +16,9 @@ import java.net.*;
 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