| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
const char *ripe_servers[] = { |
|---|
| 10 |
"whois.ripe.net", |
|---|
| 11 |
"whois.apnic.net", |
|---|
| 12 |
"whois.afrinic.net", |
|---|
| 13 |
"whois.denic.de", |
|---|
| 14 |
"rr.arin.net", |
|---|
| 15 |
"whois.6bone.net", |
|---|
| 16 |
"whois.connect.com.au", |
|---|
| 17 |
"whois.nic.fr", |
|---|
| 18 |
"whois.nic.it", |
|---|
| 19 |
"whois.telstra.net", |
|---|
| 20 |
"whois.restena.lu", |
|---|
| 21 |
"rr.level3.net", |
|---|
| 22 |
"whois.ripn.net", |
|---|
| 23 |
"whois.arnes.si", |
|---|
| 24 |
"www.registry.co.ug", |
|---|
| 25 |
"whois.nic.ir", |
|---|
| 26 |
"whois.nic.ck", |
|---|
| 27 |
"whois.ra.net", |
|---|
| 28 |
"whois.radb.net", |
|---|
| 29 |
NULL |
|---|
| 30 |
}; |
|---|
| 31 |
|
|---|
| 32 |
const char *hide_strings[] = { |
|---|
| 33 |
"NOTICE AND TERMS OF USE: You", "", |
|---|
| 34 |
"TERMS OF USE: You are not", "", |
|---|
| 35 |
"NOTICE: Access to .ORG WHOIS", "", |
|---|
| 36 |
"NOTICE: Access to .INFO WHOIS", "", |
|---|
| 37 |
"NOTICE: Access to the .aero", "", |
|---|
| 38 |
"This Registry database contains ONLY .EDU", "type: help", |
|---|
| 39 |
"% .eu Whois Server", "% of the database", |
|---|
| 40 |
"The data in Register", "", |
|---|
| 41 |
"The Data in the Tucows", "RECORD DOES NOT", |
|---|
| 42 |
" The data contained in the WHOIS", "", |
|---|
| 43 |
"This whois service currently only", "top-level domains.", |
|---|
| 44 |
"Signature Domains' Whois Service", "agree to abide by the above", |
|---|
| 45 |
"Access to ASNIC", "by this policy.", |
|---|
| 46 |
"The Data in Gabia", "you agree to abide", |
|---|
| 47 |
"The data contained in Go Daddy", "is not the registrant", |
|---|
| 48 |
"Disclaimer: The Global Name Registry", "for any commercial", |
|---|
| 49 |
"Access to America Online", "time. By accessing", |
|---|
| 50 |
"% Access and use restricted", "", |
|---|
| 51 |
"% The data in the WHOIS database of Schlund", "", |
|---|
| 52 |
"NeuStar, Inc., the Registry", "rules. For details", |
|---|
| 53 |
"The data in this whois database is", "", |
|---|
| 54 |
"By submitting a WHOIS query, you agree you will", "LACK OF A DOMAIN", |
|---|
| 55 |
"The Data in Moniker.Com", "", |
|---|
| 56 |
"The Data in OnlineNIC", " By starting this query", |
|---|
| 57 |
"The data in Bulkregister", "", |
|---|
| 58 |
"Interdomain's WHOIS", "DOES NOT SIGNIFY", |
|---|
| 59 |
"The Data provided by Stargate Holdings", "(2) enable any", |
|---|
| 60 |
"; This data is provided by domaindiscount24.com", "", |
|---|
| 61 |
"%% BookMyName Whois", "%% this policy", |
|---|
| 62 |
"The .coop registry WHOIS", "VERIFICATION, NOR DO", |
|---|
| 63 |
"Tralliance, Inc., the Registry", "", |
|---|
| 64 |
"NOTICE: Access to the domains information", "", |
|---|
| 65 |
"%% puntCAT Whois Server", "%% any time.", |
|---|
| 66 |
NULL, NULL |
|---|
| 67 |
}; |
|---|
| 68 |
|
|---|
| 69 |
const char *nic_handles[] = { |
|---|
| 70 |
"net-", "whois.arin.net", |
|---|
| 71 |
"netblk-", "whois.arin.net", |
|---|
| 72 |
"poem-", "whois.ripe.net", |
|---|
| 73 |
"form-", "whois.ripe.net", |
|---|
| 74 |
#if 0 |
|---|
| 75 |
|
|---|
| 76 |
"coco-", "whois.corenic.net", |
|---|
| 77 |
"coho-", "whois.corenic.net", |
|---|
| 78 |
"core-", "whois.corenic.net", |
|---|
| 79 |
#endif |
|---|
| 80 |
"denic-", "whois.denic.de", |
|---|
| 81 |
|
|---|
| 82 |
"as-", "whois.ripe.net", |
|---|
| 83 |
"rs-", "whois.ripe.net", |
|---|
| 84 |
"rtrs-", "whois.ripe.net", |
|---|
| 85 |
"fltr-", "whois.ripe.net", |
|---|
| 86 |
"prng-", "whois.ripe.net", |
|---|
| 87 |
NULL, NULL |
|---|
| 88 |
}; |
|---|
| 89 |
|
|---|
| 90 |
struct ip_del { |
|---|
| 91 |
const unsigned long net; |
|---|
| 92 |
const unsigned long mask; |
|---|
| 93 |
const char *serv; |
|---|
| 94 |
}; |
|---|
| 95 |
|
|---|
| 96 |
const struct ip_del ip_assign[] = { |
|---|
| 97 |
#include "ip_del.h" |
|---|
| 98 |
{ 0, 0, NULL } |
|---|
| 99 |
}; |
|---|
| 100 |
|
|---|
| 101 |
struct ip6_del { |
|---|
| 102 |
const unsigned long net; |
|---|
| 103 |
const unsigned short masklen; |
|---|
| 104 |
const char *serv; |
|---|
| 105 |
}; |
|---|
| 106 |
|
|---|
| 107 |
const struct ip6_del ip6_assign[] = { |
|---|
| 108 |
#include "ip6_del.h" |
|---|
| 109 |
{ 0, 0, NULL } |
|---|
| 110 |
}; |
|---|
| 111 |
|
|---|
| 112 |
struct as_del { |
|---|
| 113 |
const unsigned short first; |
|---|
| 114 |
const unsigned short last; |
|---|
| 115 |
const char *serv; |
|---|
| 116 |
}; |
|---|
| 117 |
|
|---|
| 118 |
const struct as_del as_assign[] = { |
|---|
| 119 |
#include "as_del.h" |
|---|
| 120 |
{ 0, 0, NULL } |
|---|
| 121 |
}; |
|---|
| 122 |
|
|---|
| 123 |
const char *tld_serv[] = { |
|---|
| 124 |
#include "tld_serv.h" |
|---|
| 125 |
NULL, NULL |
|---|
| 126 |
}; |
|---|
| 127 |
|
|---|