fix: typos and wrong numbers

This commit is contained in:
Luca 2024-09-05 17:52:07 +02:00
parent 67e9e50339
commit c0b86c7659
1 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ function MqttClient:handle ()
return err return err
end end
local ptype, length, _ = string.unpack("B B", s) local ptype, length, _ = string.unpack("B B", data)
local length, err = self.conn:readVarint(length) local length, err = self.conn:readVarint(length)
if err ~= nil then if err ~= nil then
@ -127,8 +127,8 @@ function MqttClient:connect (username, password)
return nil return nil
end end
local length = 15 local length = 13
local flags = 1 local flags = 2
if username ~= nil then if username ~= nil then
length = length + 2 + #username length = length + 2 + #username
flags = flags | 0x80 flags = flags | 0x80