diff options
author | Alexander Kuleshov <kuleshovmail@gmail.com> | 2016-12-23 16:53:41 +0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2017-01-11 10:30:46 -0800 |
commit | d569dd2198fb1116b696513d429d89c241021a83 (patch) | |
tree | 666356b0160115e90e68d15eebdf3c623cdda8e3 /lisp/textmodes/dns-mode.el | |
parent | 6463b85aeb67326acda340fbaad3e481e62120c0 (diff) | |
download | emacs-d569dd2198fb1116b696513d429d89c241021a83.tar.gz |
Add DNS keywords and remove duplications
* lisp/textmodes/dns-mode.el (dns-mode-types): Add two TLSA and
NSEC" DNS related keywords and remove duplication of "NSAP".
Diffstat (limited to 'lisp/textmodes/dns-mode.el')
-rw-r--r-- | lisp/textmodes/dns-mode.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el index 8d3e55a9bd7..02cb2a2876d 100644 --- a/lisp/textmodes/dns-mode.el +++ b/lisp/textmodes/dns-mode.el @@ -32,6 +32,9 @@ ;; RFC 1034, "DOMAIN NAMES - CONCEPTS AND FACILITIES", P. Mockapetris. ;; RFC 1035, "DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION", P. Mockapetris. +;; RFC 5155, "DNS Security (DNSSEC) Hashed Authenticated Denial of Existence" +;; RFC 6698, "The DNS-Based Authentication of Named Entities (DANE) +;; Transport Layer Security (TLS) Protocol: TLSA" ;;; Release history: @@ -50,13 +53,13 @@ (defconst dns-mode-types '("A" "NS" "MD" "MF" "CNAME" "SOA" "MB" "MG" "MR" "NULL" "WKS" "PTR" "HINFO" "MINFO" "MX" "TXT" - "RP" "AFSDB" "X25" "ISDN" "RT" "NSAP" "NSAP" + "RP" "AFSDB" "X25" "ISDN" "RT" "NSAP" "SIG" "KEY" "PX" "GPOS" "AAAA" "LOC" "NXT" "EID" "NIMLOC" "SRV" "ATMA" "NAPTR" "KX" "CERT" "A6" "DNAME" "SINK" "OPT" "APL" "DS" "SSHFP" "RRSIG" "NSEC" "DNSKEY" "UINFO" "UID" "GID" "UNSPEC" "TKEY" "TSIG" "IXFR" "AXFR" "MAILB" - "MAILA") + "MAILA" "TLSA" "NSEC3") "List of strings with known DNS types.") ;; Font lock. |