Fix for PR#45074
authorjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 27 Aug 2008 07:42:58 +0000 (07:42 +0000)
committerjfclere <jfclere@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 27 Aug 2008 07:42:58 +0000 (07:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@689402 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/Http11AprProtocol.java
webapps/docs/changelog.xml

index fe9145d..09ae4c6 100644 (file)
@@ -242,9 +242,15 @@ public class Http11AprProtocol implements ProtocolHandler, MBeanRegistration {
     public void setPollerSize(int pollerSize) { endpoint.setPollerSize(pollerSize); }
     public int getPollerSize() { return endpoint.getPollerSize(); }
 
+    public void setPollerThreadCount(int pollerThreadCount) { endpoint.setPollerThreadCount(pollerThreadCount); }
+    public int getPollerThreadCount() { return endpoint.getPollerThreadCount(); }
+    
     public int getSendfileSize() { return endpoint.getSendfileSize(); }
     public void setSendfileSize(int sendfileSize) { endpoint.setSendfileSize(sendfileSize); }
     
+    public void setSendfileThreadCount(int sendfileThreadCount) { endpoint.setSendfileThreadCount(sendfileThreadCount); }
+    public int getSendfileThreadCount() { return endpoint.getSendfileThreadCount(); }
+    
     protected int socketBuffer = 9000;
     public int getSocketBuffer() { return socketBuffer; }
     public void setSocketBuffer(int socketBuffer) { this.socketBuffer = socketBuffer; }
index bf52e2d..20a39d5 100644 (file)
@@ -49,6 +49,7 @@
   </subsection>
   <subsection name="Coyote">
     <changelog>
+     <fix><bug>45074</bug>Add configuration parameters in Http11AprProtocol</fix>
      <update><rev>644858</rev><br/>
        Inproper curly brackets cause NIO/SendFile to fail. Workaround prior to this version, set
        useSendFile=&quot;false&quot; in the Connector element.