Author: jfclere Date: Wed Aug 27 00:42:58 2008 New Revision: 689402 URL: http://svn.apache.org/viewvc?rev=689402&view=rev Log: Fix for PR#45074
Modified: tomcat/trunk/java/org/apache/coyote/http11/Http11AprProtocol.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/coyote/http11/Http11AprProtocol.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/Http11AprProtocol.java?rev=689402&r1=689401&r2=689402&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/coyote/http11/Http11AprProtocol.java (original) +++ tomcat/trunk/java/org/apache/coyote/http11/Http11AprProtocol.java Wed Aug 27 00:42:58 2008 @@ -242,9 +242,15 @@ 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; } Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=689402&r1=689401&r2=689402&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Wed Aug 27 00:42:58 2008 @@ -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="false" in the Connector element. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]