WebSockets - 最大帧大小

时间:2012-05-28 02:06:24

标签: websocket netty

我只是偶然发现了这封(旧)邮件:

http://www.ietf.org/mail-archive/web/hybi/current/msg07655.html

“如果发送一个服务器因任何原因无法缓冲的帧,我希望服务器关闭连接,错误代码为1004”。

RFC说:

1004
  Reserved.  The specific meaning might be defined in the future.

Netty如何处理大型消息?

1 个答案:

答案 0 :(得分:2)

在Netty 3.4.2中已经考虑到了这一点。

基本上,您可以选择将maxFramePayloadLength提供给WebSocketServerHandshaker的构造函数。

请参阅拉取请求https://github.com/netty/netty/issues/283