mirror of
https://github.com/rfc1036/whois.git
synced 2026-05-03 06:51:09 +00:00
Imported Debian version 5.0.5
This commit is contained in:
parent
c4ba9f91d1
commit
cdfdc7d88b
2
config.h
2
config.h
@ -1,5 +1,5 @@
|
|||||||
/* Program version */
|
/* Program version */
|
||||||
#define VERSION "5.0.4"
|
#define VERSION "5.0.5"
|
||||||
|
|
||||||
/* Configurable features */
|
/* Configurable features */
|
||||||
|
|
||||||
|
|||||||
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
|||||||
|
whois (5.0.5) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Added the .xn--p1ai (.рф, Russian Federation) TLD server.
|
||||||
|
(Closes: #581611)
|
||||||
|
* Updated the .ls TLD server. (Closes: #582077)
|
||||||
|
|
||||||
|
-- Marco d'Itri <md@linux.it> Sun, 23 May 2010 03:17:45 +0200
|
||||||
|
|
||||||
whois (5.0.4) unstable; urgency=high
|
whois (5.0.4) unstable; urgency=high
|
||||||
|
|
||||||
* Added new IPv4 allocations.
|
* Added new IPv4 allocations.
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
# http://www.iana.org/domains/root/db/
|
||||||
# NIC? means I have not been able to find the registry
|
# NIC? means I have not been able to find the registry
|
||||||
|
|
||||||
.br.com whois.centralnic.net
|
.br.com whois.centralnic.net
|
||||||
@ -188,7 +189,7 @@
|
|||||||
.li whois.nic.li
|
.li whois.nic.li
|
||||||
.lk whois.nic.lk
|
.lk whois.nic.lk
|
||||||
.lr NONE # http://www.psg.com/dns/lr/
|
.lr NONE # http://www.psg.com/dns/lr/
|
||||||
.ls WEB http://www.co.ls/data/co.asp
|
.ls WEB http://www.co.ls/co.asp
|
||||||
.lt whois.domreg.lt
|
.lt whois.domreg.lt
|
||||||
.lu whois.dns.lu
|
.lu whois.dns.lu
|
||||||
.lv whois.nic.lv
|
.lv whois.nic.lv
|
||||||
@ -331,6 +332,7 @@
|
|||||||
.xn--mgbaam7a8h whois.aeda.net.ae # United Arab Emirates
|
.xn--mgbaam7a8h whois.aeda.net.ae # United Arab Emirates
|
||||||
.xn--mgberp4a5d4ar whois.nic.net.sa # Saudi Arabia
|
.xn--mgberp4a5d4ar whois.nic.net.sa # Saudi Arabia
|
||||||
.xn--wgbh1c NONE # Egypt
|
.xn--wgbh1c NONE # Egypt
|
||||||
|
.xn--p1ai whois.ripn.net # Russian Federation
|
||||||
|
|
||||||
-dom whois.networksolutions.com
|
-dom whois.networksolutions.com
|
||||||
-org whois.networksolutions.com
|
-org whois.networksolutions.com
|
||||||
|
|||||||
7
whois.c
7
whois.c
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 1999-2009 by Marco d'Itri <md@linux.it>.
|
* Copyright 1999-2010 by Marco d'Itri <md@linux.it>.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -52,7 +52,12 @@
|
|||||||
/* hack */
|
/* hack */
|
||||||
#define malloc(s) NOFAIL(malloc(s))
|
#define malloc(s) NOFAIL(malloc(s))
|
||||||
#define realloc(p, s) NOFAIL(realloc(p, s))
|
#define realloc(p, s) NOFAIL(realloc(p, s))
|
||||||
|
#ifdef strdup
|
||||||
|
#undef strdup
|
||||||
|
#define strdup(s) NOFAIL(__strdup(s))
|
||||||
|
#else
|
||||||
#define strdup(s) NOFAIL(strdup(s))
|
#define strdup(s) NOFAIL(strdup(s))
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Global variables */
|
/* Global variables */
|
||||||
int sockfd, verb = 0;
|
int sockfd, verb = 0;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
Summary: Enhanced WHOIS client
|
Summary: Enhanced WHOIS client
|
||||||
Name: whois
|
Name: whois
|
||||||
Version: 5.0.4
|
Version: 5.0.5
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
Vendor: Marco d'Itri <md@linux.it>
|
Vendor: Marco d'Itri <md@linux.it>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user