Closed skyrising closed 6 years ago
name.encode encodes the root domain incorrectly: '' as 00 00 and '.' as 00 00 00 instead of 00 According to RFC1035 3.1 the first 00 length byte terminates a name.
''
00 00
'.'
00 00 00
00
I have a fix for this ready to push up as soon as another pull request is closed.
name.encode encodes the root domain incorrectly:
''
as00 00
and'.'
as00 00 00
instead of00
According to RFC1035 3.1 the first00
length byte terminates a name.