瀏覽代碼

Fix infinite loop that can occur when the client closes the connection before sending the complete packet body.

release/3.x.x
kpreisser 7 年之前
父節點
當前提交
d020e809a1
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. +6
    -0
      Frameworks/MQTTnet.NetStandard/Adapter/MqttChannelAdapter.cs

+ 6
- 0
Frameworks/MQTTnet.NetStandard/Adapter/MqttChannelAdapter.cs 查看文件

@@ -137,6 +137,12 @@ namespace MQTTnet.Adapter
do
{
var readBytesCount = await stream.ReadAsync(body, offset, body.Length - offset, cancellationToken).ConfigureAwait(false);
// Check if the client closed the connection before sending the full body.
if (readBytesCount == 0)
{
throw new MqttCommunicationException("Connection closed while reading remaining packet body.");
}

offset += readBytesCount;
} while (offset < header.BodyLength);


Loading…
取消
儲存