all properties listed
This commit is contained in:
parent
ed591d91f7
commit
059b605121
45
README.md
45
README.md
|
@ -353,6 +353,51 @@ Used for mDNS/DNS-SD type discoveries and anti-spam reverse lookup verification
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
All Properties
|
||||||
|
---------
|
||||||
|
|
||||||
|
For simplicity, here's a list of all properties, just for fun:
|
||||||
|
|
||||||
|
```js
|
||||||
|
{
|
||||||
|
// All RRs
|
||||||
|
"name": "example.com",
|
||||||
|
"type": 1,
|
||||||
|
"typeName": "A",
|
||||||
|
"class": 1,
|
||||||
|
"className": "IN",
|
||||||
|
"ttl": 600,
|
||||||
|
|
||||||
|
// SOA
|
||||||
|
"primary": "ns1.yahoo.com",
|
||||||
|
"admin": "hostmaster.yahoo-inc.com",
|
||||||
|
"serial": 2017092539,
|
||||||
|
"refresh": 3600,
|
||||||
|
"retry": 300,
|
||||||
|
"expiration": 1814400,
|
||||||
|
"minimum": 600,
|
||||||
|
|
||||||
|
// A, AAAA
|
||||||
|
"address": "72.14.191.202",
|
||||||
|
|
||||||
|
// CNAME, NS, PTR
|
||||||
|
"data": "ns3.google.com",
|
||||||
|
|
||||||
|
// TXT
|
||||||
|
// "data": [ "v=spf1 ptr:mx.aol.com ?all" ],
|
||||||
|
|
||||||
|
// MX
|
||||||
|
"priority": 10,
|
||||||
|
"exchange": "microsoft-com.mail.protection.outlook.com",
|
||||||
|
|
||||||
|
// SRV
|
||||||
|
"priority": 5,
|
||||||
|
"weight": 0,
|
||||||
|
"port": 5269,
|
||||||
|
"target": "xmpp-server.l.google.com"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
Contributing and Development
|
Contributing and Development
|
||||||
============================
|
============================
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue