diff options
author | Thanapat Chotipun <66824385+PatrickChoDev@users.noreply.github.com> | 2022-05-14 19:08:35 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-14 14:08:35 +0200 |
commit | bd4256262a1091d43c18d069c724fa9b41c01b95 (patch) | |
tree | a9bf72e90ba98afdc5aa7067c79cf0093170e15a /cli/tests/testdata/resolve_dns.ts.out | |
parent | f82a79ffdbc6b8f2fc4bbe6174ad33cb22e64386 (diff) |
feat(ext/net): add support for SOA records in Deno.resolveDns() API (#14534)
Diffstat (limited to 'cli/tests/testdata/resolve_dns.ts.out')
-rw-r--r-- | cli/tests/testdata/resolve_dns.ts.out | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/cli/tests/testdata/resolve_dns.ts.out b/cli/tests/testdata/resolve_dns.ts.out index 2b56d72ae..487b55546 100644 --- a/cli/tests/testdata/resolve_dns.ts.out +++ b/cli/tests/testdata/resolve_dns.ts.out @@ -1,19 +1,21 @@ A -["1.2.3.4"] +["1.2.3.4","5.6.7.8"] AAAA ["1:2:3:4:5:6:7:8"] ANAME -["aname.com."] +["aname.example.com."] CNAME -["cname.com."] +["cname.example.com."] MX -[{"preference":0,"exchange":"mx.com."}] +[{"preference":10,"exchange":"mx1.com."},{"preference":20,"exchange":"mx2.com."}] NS -["ns1.ns.com."] +["ns1.ns.com.","ns2.ns.com.","ns3.ns.com."] PTR -["ptr.com."] +["www.example.com.","alias.example.com."] +SOA +[{"mname":"net.example.com.","rname":"admin\\.domain.example.com."}] SRV -[{"priority":0,"weight":100,"port":1234,"target":"srv.com."}] +[{"priority":0,"weight":100,"port":1234,"target":"srv.example.com."}] TXT -[["foo","bar"]] +[["I","am","a","txt","record"],["I","am","another","txt","record"],["I am a different","txt record"],["key=val"]] Error NotFound thrown for not-found-example.com |