~ubuntu-branches/ubuntu/lucid/tomcat6/lucid

« back to all changes in this revision

Viewing changes to java/org/apache/coyote/http11/Http11AprProtocol.java

  • Committer: Bazaar Package Importer
  • Author(s): Mathias Gug, Iulian Udrea
  • Date: 2009-06-09 12:35:19 UTC
  • mfrom: (1.2.1 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090609123519-7owjbso5ttnka6ur
Tags: 6.0.20-1ubuntu1
[ Iulian Udrea ]
* Merge from debian unstable (LP: #385262), remaining changes:
  - debian/control, debian/rules: Use default-jdk to build
  - debian/control: Run using default-jre-headless by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
242
242
    public void setPollerSize(int pollerSize) { endpoint.setPollerSize(pollerSize); }
243
243
    public int getPollerSize() { return endpoint.getPollerSize(); }
244
244
 
 
245
    public void setPollerThreadCount(int pollerThreadCount) { endpoint.setPollerThreadCount(pollerThreadCount); }
 
246
    public int getPollerThreadCount() { return endpoint.getPollerThreadCount(); }
 
247
    
245
248
    public int getSendfileSize() { return endpoint.getSendfileSize(); }
246
249
    public void setSendfileSize(int sendfileSize) { endpoint.setSendfileSize(sendfileSize); }
247
250
    
 
251
    public void setSendfileThreadCount(int sendfileThreadCount) { endpoint.setSendfileThreadCount(sendfileThreadCount); }
 
252
    public int getSendfileThreadCount() { return endpoint.getSendfileThreadCount(); }
 
253
 
 
254
    public boolean getDeferAccept() { return endpoint.getDeferAccept(); }
 
255
    public void setDeferAccept(boolean deferAccept) { endpoint.setDeferAccept(deferAccept); }
 
256
 
248
257
    protected int socketBuffer = 9000;
249
258
    public int getSocketBuffer() { return socketBuffer; }
250
259
    public void setSocketBuffer(int socketBuffer) { this.socketBuffer = socketBuffer; }