Procházet zdrojové kódy

Fix reading more data than required for the body.

release/3.x.x
Christian před 7 roky
rodič
revize
751ac19c4b
1 změnil soubory, kde provedl 9 přidání a 1 odebrání
  1. +9
    -1
      Frameworks/MQTTnet.NetStandard/Adapter/MqttChannelAdapter.cs

+ 9
- 1
Frameworks/MQTTnet.NetStandard/Adapter/MqttChannelAdapter.cs Zobrazit soubor

@@ -142,7 +142,13 @@ namespace MQTTnet.Adapter
var buffer = new byte[ReadBufferSize];
while (body.Length < header.BodyLength)
{
var readBytesCount = await stream.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false);
var bytesLeft = header.BodyLength - (int)body.Length;
if (bytesLeft > buffer.Length)
{
bytesLeft = buffer.Length;
}

var readBytesCount = await stream.ReadAsync(buffer, 0, bytesLeft, cancellationToken).ConfigureAwait(false);
// Check if the client closed the connection before sending the full body.
if (readBytesCount == 0)
@@ -150,6 +156,8 @@ namespace MQTTnet.Adapter
throw new MqttCommunicationException("Connection closed while reading remaining packet body.");
}

// Here is no need to await because internally only an array is used and no real I/O operation is made.
// Using async here will only generate overhead.
body.Write(buffer, 0, readBytesCount);
}



Načítá se…
Zrušit
Uložit