Sfoglia il codice sorgente

fixed negative length for empty packages

release/3.x.x
Jan Eggers 6 anni fa
parent
commit
5923c7c408
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      Source/MQTTnet/Serializer/MqttPacketWriter.cs

+ 1
- 1
Source/MQTTnet/Serializer/MqttPacketWriter.cs Vedi File

@@ -99,7 +99,7 @@ namespace MQTTnet.Serializer

public void Reset()
{
Length = 0;
Length = 5;
}

public void Seek(int offset)


Caricamento…
Annulla
Salva