Closed richardschneider closed 6 years ago
The sent TXT RDATA response (see RFC 1035 section 3.3.14) is malformed. The TXT-DATA should be an array of <character-string>, NOT just a string.
<character-string>
Each <character-string> has a length prefixed byte followed by the UTF-8 string. The array is terminated with a NUL byte.
See Issue https://github.com/mafintosh/dns-packet/issues/25
Did some packet tracing with wireshark and it reports the query response is malformed.
This will be fixed in the next release of dns-packet and multicast-dns.
dns-packet
multicast-dns
The sent TXT RDATA response (see RFC 1035 section 3.3.14) is malformed. The TXT-DATA should be an array of
<character-string>
, NOT just a string.Each
<character-string>
has a length prefixed byte followed by the UTF-8 string. The array is terminated with a NUL byte.