You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by lu...@apache.org on 2003/06/05 21:46:49 UTC

cvs commit: jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11 Http11Processor.java

luehe       2003/06/05 12:46:49

  Modified:    coyote/src/java/org/apache/coyote Request.java
               http11/src/java/org/apache/coyote/http11
                        Http11Processor.java
  Log:
  Undid previous changes
  
  Revision  Changes    Path
  1.22      +0 -20     jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Request.java
  
  Index: Request.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/Request.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- Request.java	5 Jun 2003 16:42:48 -0000	1.21
  +++ Request.java	5 Jun 2003 19:46:49 -0000	1.22
  @@ -62,7 +62,6 @@
   
   import java.io.IOException;
   import java.util.Hashtable;
  -import java.net.Socket;
   
   import org.apache.tomcat.util.buf.ByteChunk;
   import org.apache.tomcat.util.buf.MessageBytes;
  @@ -138,8 +137,6 @@
       
       private int remotePort;
   
  -    private Socket socket;
  -
       private MessageBytes schemeMB = new MessageBytes();
   
       private MessageBytes methodMB = new MessageBytes();
  @@ -307,23 +304,6 @@
           this.remotePort = port;
       }
   
  -    /**
  -     * Sets the socket through which this request was received.
  -     *
  -     * @param socket The socket through which this request was received
  -     */
  -    public void setSocket(Socket socket) {
  -	this.socket = socket;
  -    }
  -
  -    /**
  -     * Gets the socket through which this request was received.
  -     *
  -     * @return The socket through which this request was received
  -     */
  -    public Socket getSocket() {
  -	return socket;
  -    }
   
       // -------------------- encoding/type --------------------
   
  
  
  
  1.67      +0 -1      jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Processor.java
  
  Index: Http11Processor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11Processor.java,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- Http11Processor.java	5 Jun 2003 16:42:48 -0000	1.66
  +++ Http11Processor.java	5 Jun 2003 19:46:49 -0000	1.67
  @@ -517,7 +517,6 @@
       public void setSocket(Socket socket)
           throws IOException {
           this.socket = socket;
  -	this.request.setSocket(socket);
       }
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org