Imported Debian version 4.7.6

This commit is contained in:
Marco d'Itri 2005-07-01 18:42:03 +02:00
parent 29d43d00f5
commit 8d33311a68
9 changed files with 27 additions and 15 deletions

View File

@ -53,6 +53,7 @@
34515 34519 afrinic
33792 35839 ripe
36864 37887 afrinic
37888 38911 apnic
# catch all: everything else comes from ARIN
1 37887 arin

View File

@ -1,6 +1,6 @@
/* Program version */
/* not for the inetutils version */
#define VERSION "4.7.5"
#define VERSION "4.7.6"
/* Configurable features */

12
data.h
View File

@ -30,12 +30,12 @@ const char *ripe_servers[] = {
const char *hide_strings[] = {
"NOTICE AND TERMS OF USE: You", "Network Solutions reserves",/* Verisign */
"NOTICE: The expiration date", "Registrars.", /* crsnic */
"NOTICE: The expiration date", "reserves the right to", /* crsnic */
"NOTICE: Access to .ORG WHOIS", "time. By submitting", /* org */
"NOTICE: Access to .INFO WHOIS", "time. By submitting", /* info */
"This Registry database contains ONLY .EDU", "type: help", /* edu */
"The data in Register", "By submitting", /* REGISTER.COM */
"The Data in the Tucows", "RECORD DOES NOT", /* OPENSRS */
"The Data in the Tucows", "RECORD DOES NOT", /* tucows */
" The data contained in the WHOIS", "Please limit your", /* DOTSTER */
"This whois service currently only", "top-level domains.",
"Signature Domains' Whois Service", "agree to abide by the above",
@ -46,10 +46,7 @@ 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 */
#if 0
// This must be disabled because whois.bizcn.com uses a similar text
"The data in this whois", "using our Whois information", /* enom */
#endif
"The data in this whois database is", "Version 6.", /* enom */
"By submitting a WHOIS query, you agree you will", "LACK OF A DOMAIN", /* directNIC */
"The Data in Moniker.com", "this query, you agree",
"The Data in OnlineNIC", " By starting this query", /* OnlineNIC */
@ -64,7 +61,8 @@ const char *hide_strings[] = {
const char *nic_handles[] = {
"net-", "whois.arin.net",
"netblk-", "whois.arin.net",
"lim-", "whois.ripe.net",
"poem-", "whois.ripe.net",
"form-", "whois.ripe.net",
#if 0
// commented until somebody will explain the query format for these
"coco-", "whois.corenic.net",

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
whois (4.7.6) unstable; urgency=medium
* Added new ASN and IP allocations.
* Updated the .tv TLD server.
* Added support for poem- and form- RIPE objects.
-- Marco d'Itri <md@linux.it> Fri, 1 Jul 2005 18:42:03 +0200
whois (4.7.5) unstable; urgency=high
* Updated the .in TLD server. (Closes: #308609)

View File

@ -1,4 +1,4 @@
# http://www.iana.org./assignments/ipv6-tla-assignments
# http://www.iana.org/assignments/ipv6-unicast-address-assignments
# The parser is very simple-minded and wants the two first components of
# addresses. It does not deal with networks == 0 or > 24 bit.
@ -34,6 +34,8 @@
2003:0000::/18 ripe
2400:0000::/18 apnic
2600:0000::/12 arin
#2600:0000::/22 arin
#2604:0000::/22 arin
@ -41,6 +43,7 @@
#260C:0000::/22 arin
2A00:0000::/21 ripe
2A01:0000::/23 ripe
3FFE:0000::/16 6bone

View File

@ -17,7 +17,7 @@
60.0.0.0/7 apnic
62.0.0.0/8 ripe
80.0.0.0/5 ripe # => 87.255.255.255
88.0.0.0/8 ripe
88.0.0.0/6 ripe # => 91.255.255.254
124.0.0.0/7 apnic
126.0.0.0/8 apnic
96.0.0.0/3 UNALLOCATED # => 127.215.255.255
@ -72,8 +72,10 @@
169.208.0.0/12 apnic
171.16.0.0/12 ripe
171.32.0.0/15 ripe
# 173 -> 190 reserved
# 173 -> 187 reserved
188.0.0.0/8 ripe # transferred from ARIN to to RIPE
189.0.0.0/8 lacnic
190.0.0.0/8 lacnic
## All other B class addresses are supposed to be allocated by ARIN
## We know that many of them are not, but they can't all be listed here
128.0.0.0/2 arin

View File

@ -182,7 +182,7 @@ int main(int argc, char *argv[])
exit(2);
}
p = password;
p = (unsigned char *)password;
while (*p) {
if (*p == '\n') {
*p = '\0';
@ -206,7 +206,7 @@ int main(int argc, char *argv[])
}
{
unsigned char *pw;
char *pw;
pw = malloc(strlen(salt_prefix) + strlen(salt) + 1);
*pw = '\0';
strcat(pw, salt_prefix);

View File

@ -262,7 +262,7 @@
.tp whois.nic.tp
.tr whois.metu.edu.tr
.tt WEB http://www.nic.tt/cgi-bin/search.pl
.tv whois.tv
.tv whois.nic.tv
.tw whois.twnic.net
.tz NONE # http://www.psg.com/dns/tz/
.ua whois.net.ua

View File

@ -1,6 +1,6 @@
Summary: Enhanced WHOIS client
Name: whois
Version: 4.7.5
Version: 4.7.6
Release: 1
License: GPL
Vendor: Marco d'Itri <md@linux.it>