Procházet zdrojové kódy

Fix bug which prevents receiving large packets for UWP.

release/3.x.x
Christian Kratky před 6 roky
rodič
revize
3d0ecc05ff
1 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. +5
    -1
      Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs

+ 5
- 1
Source/MQTTnet/Implementations/MqttTcpChannel.Uwp.cs Zobrazit soubor

@@ -154,7 +154,11 @@ namespace MQTTnet.Implementations

private void CreateStreams()
{
_readStream = _socket.InputStream.AsStreamForRead(_bufferSize);
// Attention! Do not set the buffer for the read method. This will
// limit the internal buffer and the read operation will hang forever
// is more data than the buffer size was received.
_readStream = _socket.InputStream.AsStreamForRead();

_writeStream = _socket.OutputStream.AsStreamForWrite(_bufferSize);
}



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