mafintosh / dns-packet

An abstract-encoding compliant module for encoding / decoding DNS packets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Escaped dot in `rname` handled as normal dot

JensSpanier opened this issue · comments

For the rname in a SOA record it's possible to escape a dot.

So john\.doe.example.com should become john.doe@example.com. See here.

But the result is just john.doe.example.com and therefore it's not possible to finde the right . to replace it with an @.

commented

@JensSpanier I created #93 that should fix the problem.