You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2005/05/25 12:39:28 UTC

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

remm        2005/05/25 03:39:28

  Modified:    http11/src/java/org/apache/coyote/http11
                        Http11AprProtocol.java
  Log:
  - Add config of firstReadTimeout.
  
  Revision  Changes    Path
  1.6       +9 -0      jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11AprProtocol.java
  
  Index: Http11AprProtocol.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/http11/src/java/org/apache/coyote/http11/Http11AprProtocol.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Http11AprProtocol.java	22 May 2005 17:12:11 -0000	1.5
  +++ Http11AprProtocol.java	25 May 2005 10:39:28 -0000	1.6
  @@ -278,6 +278,15 @@
           setAttribute("port", "" + port);
       }
   
  +    public int getFirstReadTimeout() {
  +        return ep.getFirstReadTimeout();
  +    }
  +
  +    public void setFirstReadTimeout( int i ) {
  +        ep.setFirstReadTimeout(i);
  +        setAttribute("firstReadTimeout", "" + i);
  +    }
  +
       public boolean getUseSendfile() {
           return ep.getUseSendfile();
       }
  
  
  

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