View | Details | Raw Unified | Return to bug 45074
Collapse All | Expand All

(-)java/org/apache/coyote/http11/Http11AprProtocol.java (+6 lines)
Lines 242-250 Link Here
242
    public void setPollerSize(int pollerSize) { endpoint.setPollerSize(pollerSize); }
242
    public void setPollerSize(int pollerSize) { endpoint.setPollerSize(pollerSize); }
243
    public int getPollerSize() { return endpoint.getPollerSize(); }
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
    public int getSendfileSize() { return endpoint.getSendfileSize(); }
248
    public int getSendfileSize() { return endpoint.getSendfileSize(); }
246
    public void setSendfileSize(int sendfileSize) { endpoint.setSendfileSize(sendfileSize); }
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
    
248
    protected int socketBuffer = 9000;
254
    protected int socketBuffer = 9000;
249
    public int getSocketBuffer() { return socketBuffer; }
255
    public int getSocketBuffer() { return socketBuffer; }
250
    public void setSocketBuffer(int socketBuffer) { this.socketBuffer = socketBuffer; }
256
    public void setSocketBuffer(int socketBuffer) { this.socketBuffer = socketBuffer; }

Return to bug 45074