Increase websocket framesize for autobahn tests

This commit is contained in:
vibul 2012-07-19 12:40:54 +10:00
parent 7b511d8200
commit 19ddb7a8e1

View File

@ -67,7 +67,7 @@ public class AutobahnServerHandler extends ChannelInboundMessageHandlerAdapter<O
// Handshake
WebSocketServerHandshakerFactory wsFactory = new WebSocketServerHandshakerFactory(
getWebSocketLocation(req), null, false);
getWebSocketLocation(req), null, false, Integer.MAX_VALUE);
handshaker = wsFactory.newHandshaker(req);
if (handshaker == null) {
wsFactory.sendUnsupportedWebSocketVersionResponse(ctx.channel());