We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to rfc 1928, page 5: "the first octet of the address field contains the number of octets of name that follow"
So it should be : (line 257) in microWebCli.py
l = b[4] not l = b[3]
l = b[4]
l = b[3]
The text was updated successfully, but these errors were encountered:
Thanks! I've fixed the reading of the header : if b[3] == 0x01 : l = 4 elif b[3] == 0x03 : l = cli.read(1)[0] elif b[3] == 0x04 : l = 16 cli.read(l + 2)
if b[3] == 0x01 :
l = 4
elif b[3] == 0x03 :
l = cli.read(1)[0]
elif b[3] == 0x04 :
l = 16
cli.read(l + 2)
Sorry, something went wrong.
No branches or pull requests
According to rfc 1928, page 5:
"the first octet of the address field contains the number of octets of name that follow"
So it should be : (line 257) in microWebCli.py
l = b[4]
not
l = b[3]
The text was updated successfully, but these errors were encountered: