Add AfriNIC as a RIR.

PR:		80421
Submitted by:	Adrian Frith <adrian at frith.homelinux.org>
MFC after:	6 days
This commit is contained in:
John Hay 2006-01-23 13:49:39 +00:00
parent ae75448fcd
commit 23639a23a8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154710
2 changed files with 16 additions and 6 deletions

View File

@ -40,7 +40,7 @@
.Nd "Internet domain name and network number directory service"
.Sh SYNOPSIS
.Nm
.Op Fl aAbdgiIklmQrR6
.Op Fl aAbdfgiIklmQrR6
.Op Fl c Ar country-code | Fl h Ar host
.Op Fl p Ar port
.Ar name ...
@ -58,7 +58,7 @@ Use the American Registry for Internet Numbers
.Pq Tn ARIN
database.
It contains network numbers used in those parts of the world covered neither by
.Tn APNIC
.Tn APNIC , AfriNIC , LACNIC ,
nor by
.Tn RIPE .
.Pp
@ -87,6 +87,11 @@ Use the US Department of Defense
database.
It contains points of contact for subdomains of
.Pa .MIL .
.It Fl f
Use the African Network Information Centre
.Pq Tn AfriNIC
database. It contains network numbers used in Africa and the islands of the
western Indian Ocean.
.It Fl g
Use the US non-military federal government database, which contains points of
contact for subdomains of
@ -112,7 +117,7 @@ Registry for Internet Numbers
If a query to
.Tn ARIN
references
.Tn APNIC , LACNIC ,
.Tn APNIC , AfriNIC , LACNIC ,
or
.Tn RIPE ,
that server will be queried also, provided that the

View File

@ -77,6 +77,7 @@ __FBSDID("$FreeBSD$");
#define NORIDHOST "whois.norid.no"
#define IANAHOST "whois.iana.org"
#define GERMNICHOST "de.whois-servers.net"
#define FNICHOST "whois.afrinic.net"
#define DEFAULT_PORT "whois"
#define WHOIS_SERVER_ID "Whois Server: "
#define WHOIS_ORG_SERVER_ID "Registrant Street1:Whois Server:"
@ -86,7 +87,8 @@ __FBSDID("$FreeBSD$");
#define ishost(h) (isalnum((unsigned char)h) || h == '.' || h == '-')
const char *ip_whois[] = { LNICHOST, RNICHOST, PNICHOST, BNICHOST, NULL };
const char *ip_whois[] = { LNICHOST, RNICHOST, PNICHOST, BNICHOST,
FNICHOST, NULL };
const char *port = DEFAULT_PORT;
static char *choose_server(char *);
@ -108,7 +110,7 @@ main(int argc, char *argv[])
country = host = qnichost = NULL;
flags = use_qnichost = 0;
while ((ch = getopt(argc, argv, "aAbc:dgh:iIklmp:QrR6")) != -1) {
while ((ch = getopt(argc, argv, "aAbc:dfgh:iIklmp:QrR6")) != -1) {
switch (ch) {
case 'a':
host = ANICHOST;
@ -125,6 +127,9 @@ main(int argc, char *argv[])
case 'd':
host = DNICHOST;
break;
case 'f':
host = FNICHOST;
break;
case 'g':
host = GNICHOST;
break;
@ -356,7 +361,7 @@ static void
usage(void)
{
fprintf(stderr,
"usage: whois [-aAbdgiIklmQrR6] [-c country-code | -h hostname] "
"usage: whois [-aAbdfgiIklmQrR6] [-c country-code | -h hostname] "
"[-p port] name ...\n");
exit(EX_USAGE);
}