diff options
author | Marco d'Itri <md@linux.it> | 1999-10-28 22:21:55 +0200 |
---|---|---|
committer | Marco d'Itri <md@linux.it> | 2013-03-30 02:31:26 +0100 |
commit | bc68e8c4a6448126476c373fd67a76fb2b657835 (patch) | |
tree | 3ad57a9c35ffcf6e0c90045341ed9c321048f75b /data.h | |
download | whois-bc68e8c4a6448126476c373fd67a76fb2b657835.tar.gz |
Imported Debian version 4.3.1v4.3.1
Diffstat (limited to 'data.h')
-rw-r--r-- | data.h | 46 |
1 files changed, 46 insertions, 0 deletions
@@ -0,0 +1,46 @@ +const char *ripeflags="acFLmMrRS"; +const char *ripeflagsp="gisTtv"; + +const char *ripe_servers[] = { + "whois.ripe.net", + "whois.ra.net", + "whois.apnic.net", + "whois.mci.net", + "whois.isi.edu", + "whois.nic.it", + "whois.6bone.net", + "whois.ans.net", + NULL +}; + +const char *gtlds[] = { + ".com", + ".net", + ".org", + ".edu", + NULL +}; + +const char *arin_nets[] = { + "net-", + "netblk-", + "asn-", + NULL, +}; + +struct ip_del { + unsigned long int net; + unsigned long int mask; + const char *serv; +}; + +struct ip_del ip_assign[] = { +#include "ip_del.h" + { 0, 0, NULL } +}; + +const char *tld_serv[] = { +#include "tld_serv.h" + NULL, NULL +}; + |