mirror of
https://github.com/rfc1036/whois.git
synced 2026-08-31 07:30:22 +00:00
Imported Debian version 4.7.13
This commit is contained in:
parent
07b44b3568
commit
27fd0b5493
2
config.h
2
config.h
@ -1,6 +1,6 @@
|
||||
/* Program version */
|
||||
/* not for the inetutils version */
|
||||
#define VERSION "4.7.12"
|
||||
#define VERSION "4.7.13"
|
||||
|
||||
/* Configurable features */
|
||||
|
||||
|
||||
5
data.h
5
data.h
@ -31,7 +31,7 @@ const char *ripe_servers[] = {
|
||||
|
||||
const char *hide_strings[] = {
|
||||
"NOTICE AND TERMS OF USE: You", "", /* NetSol */
|
||||
"NOTICE: The expiration date", "reserves the right to", /* crsnic */
|
||||
"TERMS OF USE: You are not", "", /* crsnic */
|
||||
"NOTICE: Access to .ORG WHOIS", "",
|
||||
"NOTICE: Access to .INFO WHOIS", "",
|
||||
"NOTICE: Access to the .aero", "",
|
||||
@ -60,6 +60,9 @@ const char *hide_strings[] = {
|
||||
"; This data is provided by domaindiscount24.com", "",
|
||||
"%% BookMyName Whois", "%% this policy",
|
||||
"The .coop registry WHOIS", "VERIFICATION, NOR DO",
|
||||
"Tralliance, Inc., the Registry", "", /* travel */
|
||||
"NOTICE: Access to the domains information", "", /* CORE */
|
||||
"%% puntCAT Whois Server", "%% any time.",
|
||||
NULL, NULL
|
||||
};
|
||||
|
||||
|
||||
9
debian/changelog
vendored
9
debian/changelog
vendored
@ -1,3 +1,12 @@
|
||||
whois (4.7.13) unstable; urgency=medium
|
||||
|
||||
* Added the .cat, .jobs, and .travel TLD servers.
|
||||
* Added the .co.pl pseudo-SLD server.
|
||||
* Added new IPv6 allocations.
|
||||
* Updated the hide_strings data for whois.crsnic.net.
|
||||
|
||||
-- Marco d'Itri <md@linux.it> Fri, 24 Mar 2006 21:53:05 +0100
|
||||
|
||||
whois (4.7.12) unstable; urgency=medium
|
||||
|
||||
* Added new IPv4 allocations.
|
||||
|
||||
@ -26,8 +26,7 @@
|
||||
|
||||
2001:5000::/20 ripe
|
||||
|
||||
2001:8000::/19 apnic
|
||||
2001:A000::/20 apnic
|
||||
2001:8000::/18 apnic
|
||||
|
||||
# 6to4 is special-cased
|
||||
2002:0000::/16 6to4
|
||||
@ -35,6 +34,7 @@
|
||||
2003:0000::/18 ripe
|
||||
|
||||
2400:0000::/18 apnic
|
||||
2404:0000::/23 apnic
|
||||
|
||||
2600:0000::/12 arin
|
||||
#2600:0000::/22 arin
|
||||
|
||||
@ -98,7 +98,6 @@
|
||||
192.0.0.0/8 arin # the swamp
|
||||
193.0.0.0/8 ripe
|
||||
194.0.0.0/7 ripe
|
||||
198.17.117.0/24 ripe
|
||||
196.0.0.0/8 afrinic
|
||||
196.0.0.0/6 arin
|
||||
|
||||
|
||||
@ -32,11 +32,15 @@
|
||||
.aero whois.information.aero
|
||||
.arpa whois.iana.org
|
||||
.biz whois.nic.biz
|
||||
.cat whois.cat
|
||||
.coop whois.nic.coop
|
||||
.info whois.afilias.info
|
||||
.jobs whois.jobs
|
||||
.mobi NONE
|
||||
.museum whois.museum
|
||||
.name whois.nic.name
|
||||
.pro whois.registrypro.pro
|
||||
.travel whois.nic.travel
|
||||
.ac whois.nic.ac
|
||||
.ad NONE # www.nic.ad
|
||||
.ae whois.uaenic.ae
|
||||
@ -215,6 +219,7 @@
|
||||
.pg NONE # http://www.npi.gov.pg/DNS/DNS-Application-form.htm
|
||||
.ph WEB http://www.domains.ph/DomainSearch.asp
|
||||
.pk WEB http://www.pknic.net.pk/
|
||||
.co.pl whois.co.pl # "unofficial" SLD
|
||||
.pl whois.dns.pl
|
||||
.pm whois.nic.fr
|
||||
.pn WEB http://www.pitcairn.pn/PnRegistry/CheckAvailability.html
|
||||
|
||||
7
whois.c
7
whois.c
@ -453,6 +453,13 @@ char *queryformat(const char *server, const char *flags, const char *query)
|
||||
&& !strchr(query, ' ') && !*flags)
|
||||
sprintf(buf, "-T dn,ace -C US-ASCII %s", query);
|
||||
else
|
||||
/* here we have another registrar who could not make things simple
|
||||
* -C sets the language for both input and output
|
||||
*/
|
||||
if (!isripe && strcmp(server, "whois.cat") == 0 && domcmp(query, ".cat")
|
||||
&& !strchr(query, ' '))
|
||||
sprintf(buf, "-C US-ASCII ace %s", query);
|
||||
else
|
||||
#endif
|
||||
if (!isripe && (strcmp(server, "whois.nic.mil") == 0 ||
|
||||
strcmp(server, "whois.nic.ad.jp") == 0) &&
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
Summary: Enhanced WHOIS client
|
||||
Name: whois
|
||||
Version: 4.7.12
|
||||
Version: 4.7.13
|
||||
Release: 1
|
||||
License: GPL
|
||||
Vendor: Marco d'Itri <md@linux.it>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user