SSL-如何调整最大帧数

SSL-how to adjust max frame

我读到有关 ssl 的内容,据说 ssl 帧的最大值是 16384 字节,这是真的吗?

如果为真,你知道如何调整它吗,因为我的数据超过 16384 字节?

谢谢

I read about ssl and it is say that max of ssl frame is 16384bytes is that true?

没有。它有最大 SSL 消息 大小,具体取决于您使用的密码套件,但 SSL API 将 SSL 套接字作为字节流呈现给您。您不必担心 SSL 打包写入 SSL 消息并再次返回的方式:这一切都在幕后发生。

if true do you know how to adjust it because i have data more than 16384bytes?

没关系。照常书写和阅读即可。