https://issues.apache.org/bugzilla/show_bug.cgi?id=56187
--- Comment #3 from Shailesh <05.shail...@gmail.com> ---
Atmosphere 1.0.18 uses legacy protocol. 

I tried to debug the issue reached to org.apache.catalina.websocket.WsOutbound. 

public static final int DEFAULT_BUFFER_SIZE = 8192;

public WsOutbound(UpgradeOutbound upgradeOutbound,
            StreamInbound streamInbound) {
        this(upgradeOutbound, streamInbound, DEFAULT_BUFFER_SIZE,
                DEFAULT_BUFFER_SIZE);
    }

The CharBuffer created with the capacity of DEFAULT_BUFFER_SIZE which is 8192. 

There is no way to change the buffer size. 

I think max. buffer size should be configurable so that it can be set as per
the requirement.

-- 
You are receiving this mail because:
You are the assignee for the bug.

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

Reply via email to