1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

Update whois-server-tld

* lisp/net/net-utils.el (whois-server-tld): Update and add some
missing entries.
This commit is contained in:
Stefan Kangas 2021-04-07 13:35:59 +02:00
parent 55f0576ebd
commit 5d45613616

View File

@ -857,9 +857,14 @@ and `network-connection-service-alist', which see."
;; FIXME: modern whois clients include a much better tld <-> whois server
;; list, Emacs should probably avoid specifying the server as the client
;; will DTRT anyway... -rfr
;; I'm not sure about the above FIXME. It seems to me that we should
;; just check the Root Zone Database maintained at:
;; https://www.iana.org/domains/root/db
;; For example: whois -h whois.iana.org .se | grep whois
(defcustom whois-server-tld
'(("rs.internic.net" . "com")
("whois.publicinterestregistry.net" . "org")
'(("whois.verisign-grs.com" . "com")
("whois.verisign-grs.com" . "net")
("whois.pir.org" . "org")
("whois.ripe.net" . "be")
("whois.ripe.net" . "de")
("whois.ripe.net" . "dk")
@ -867,10 +872,13 @@ and `network-connection-service-alist', which see."
("whois.ripe.net" . "fi")
("whois.ripe.net" . "fr")
("whois.ripe.net" . "uk")
("whois.iis.se" . "se")
("whois.iis.nu" . "nu")
("whois.apnic.net" . "au")
("whois.apnic.net" . "ch")
("whois.apnic.net" . "hk")
("whois.apnic.net" . "jp")
("whois.eu" . "eu")
("whois.nic.gov" . "gov")
("whois.nic.mil" . "mil"))
"Alist to map top level domains to whois servers."