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/04/20 18:40:52 UTC

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

remm        2005/04/20 09:40:52

  Modified:    http11/src/java/org/apache/coyote/http11
                        Http11AprProtocol.java
  Log:
  - Add needed get/set for sendfile.
  
  Revision  Changes    Path
  1.4       +8 -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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Http11AprProtocol.java	18 Apr 2005 16:47:47 -0000	1.3
  +++ Http11AprProtocol.java	20 Apr 2005 16:40:52 -0000	1.4
  @@ -280,6 +280,14 @@
           setAttribute("port", "" + port);
       }
   
  +    public boolean getUseSendfile() {
  +        return ep.getUseSendfile();
  +    }
  +
  +    public void setUseSendfile(boolean useSendfile) {
  +        ep.setUseSendfile(useSendfile);
  +    }
  +
       public InetAddress getAddress() {
           return ep.getAddress();
       }
  
  
  

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