This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
Compoment
/
MQTTnet
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fixed negative length for empty packages
release/3.x.x
Jan Eggers
6 years ago
parent
7dfb6fdc52
commit
5923c7c408
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Source/MQTTnet/Serializer/MqttPacketWriter.cs
+ 1
- 1
Source/MQTTnet/Serializer/MqttPacketWriter.cs
View File
@@ -99,7 +99,7 @@ namespace MQTTnet.Serializer
public void Reset()
public void Reset()
{
{
Length =
0
;
Length =
5
;
}
}
public void Seek(int offset)
public void Seek(int offset)
Write
Preview
Loading…
Cancel
Save