fix bad test AAAA value
This commit is contained in:
parent
4d8c88e882
commit
32bc4e6fea
5
BUGS.txt
5
BUGS.txt
|
@ -1 +1,6 @@
|
||||||
dig @localhost -p 65053 ANY aaaa.example.com
|
dig @localhost -p 65053 ANY aaaa.example.com
|
||||||
|
|
||||||
|
# Using the wrong type (A instead of AAAA) results in an erroneous packet
|
||||||
|
|
||||||
|
{ "zone": "example.com", "name": "aaaa.example.com", "tld": "com", "sld": "example", "sub": "aaaa"
|
||||||
|
, "type": "A", "address": "::1" }
|
||||||
|
|
|
@ -29,7 +29,7 @@ module.exports = {
|
||||||
, { "zone": "example.com", "name": "a.example.com", "tld": "com", "sld": "example", "sub": "a"
|
, { "zone": "example.com", "name": "a.example.com", "tld": "com", "sld": "example", "sub": "a"
|
||||||
, "type": "A", "address": "4.3.2.1" }
|
, "type": "A", "address": "4.3.2.1" }
|
||||||
, { "zone": "example.com", "name": "aaaa.example.com", "tld": "com", "sld": "example", "sub": "aaaa"
|
, { "zone": "example.com", "name": "aaaa.example.com", "tld": "com", "sld": "example", "sub": "aaaa"
|
||||||
, "type": "A", "address": "::1" }
|
, "type": "AAAA", "address": "::1" }
|
||||||
, { "zone": "example.com", "name": "aname.example.com", "tld": "com", "sld": "example", "sub": "aname"
|
, { "zone": "example.com", "name": "aname.example.com", "tld": "com", "sld": "example", "sub": "aname"
|
||||||
, "type": "A", "aname": "amazon.com" }
|
, "type": "A", "aname": "amazon.com" }
|
||||||
, { "zone": "example.com", "name": "devname.example.com", "tld": "com", "sld": "example", "sub": "devname"
|
, { "zone": "example.com", "name": "devname.example.com", "tld": "com", "sld": "example", "sub": "devname"
|
||||||
|
|
Loading…
Reference in New Issue