summaryrefslogtreecommitdiff
path: root/data.h
diff options
context:
space:
mode:
authorMarco d'Itri <md@linux.it>1999-10-28 22:21:55 +0200
committerMarco d'Itri <md@linux.it>2013-03-30 02:31:26 +0100
commitbc68e8c4a6448126476c373fd67a76fb2b657835 (patch)
tree3ad57a9c35ffcf6e0c90045341ed9c321048f75b /data.h
downloadwhois-bc68e8c4a6448126476c373fd67a76fb2b657835.tar.gz
Imported Debian version 4.3.1v4.3.1
Diffstat (limited to 'data.h')
-rw-r--r--data.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/data.h b/data.h
new file mode 100644
index 0000000..8ff202e
--- /dev/null
+++ b/data.h
@@ -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
+};
+