diff options
author | Marco d'Itri <md@linux.it> | 2002-11-28 20:49:01 +0100 |
---|---|---|
committer | Marco d'Itri <md@linux.it> | 2013-03-30 02:31:29 +0100 |
commit | fc83e15cf75106806ac98dc35ed57bdd9f6cf7ba (patch) | |
tree | 7901c07b1d48fa201127575d3e95f0636f9fd7cd /data.h | |
parent | ebdd8a8c98d694f34b14c80e58abfa0ee70ac622 (diff) | |
download | whois-fc83e15cf75106806ac98dc35ed57bdd9f6cf7ba.tar.gz |
Imported Debian version 4.6.0v4.6.0
Diffstat (limited to 'data.h')
-rw-r--r-- | data.h | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -65,13 +65,13 @@ const char *hide_strings[] = { "Access to America Online", "time. By accessing", /* AOL */ "% Access and use restricted", "% http://www.icann", /* GANDI */ "NeuStar, Inc., the Registry", "rules. For details", /* us */ + "The data in this whois", "to abide by these terms.", /* enom */ NULL, NULL }; const char *nic_handles[] = { "net-", "whois.arin.net", "netblk-", "whois.arin.net", - "asn-", "whois.arin.net", "lim-", "whois.ripe.net", "coco-", "whois.corenic.net", "coho-", "whois.corenic.net", @@ -97,6 +97,22 @@ struct ip_del ip_assign[] = { { 0, 0, NULL } }; +struct ip6_del { + unsigned long net; /* bits 16-22 of the address */ + const char *serv; +}; + +struct ip6_del ip6_assign[] = { + { 0x0200, "whois.apnic.net" }, + { 0x0400, "whois.arin.net" }, + { 0x0600, "whois.ripe.net" }, + { 0x0800, "whois.ripe.net" }, + { 0x0A00, "whois.ripe.net" }, + { 0x0C00, "whois.apnic.net" }, + { 0x1200, "whois.lacnic.net" }, + { 0, NULL } +}; + struct as_del { unsigned short first; unsigned short last; |