diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2006-09-17 17:07:17 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2006-09-17 17:07:17 +0000 |
commit | 10ec1deaf33dc7b3ab3488f54302f88f197eda34 (patch) | |
tree | 24daa7fe0baf76fa2cbf20b8750d596d39b28608 /usr.bin | |
parent | e715ea13590114556be20007a2ffd01d5b06ae39 (diff) |
when looking up ASNs (ASxxxx), select radb
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/whois/whois.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/whois/whois.c b/usr.bin/whois/whois.c index ceb769e9ce1..a996bbf1039 100644 --- a/usr.bin/whois/whois.c +++ b/usr.bin/whois/whois.c @@ -1,4 +1,4 @@ -/* $OpenBSD: whois.c,v 1.37 2006/06/01 18:17:35 mk Exp $ */ +/* $OpenBSD: whois.c,v 1.38 2006/09/17 17:07:16 henning Exp $ */ /* * Copyright (c) 1980, 1993 @@ -265,8 +265,8 @@ whois(const char *query, const char *server, const char *port, int flags) * If no country is specified determine the top level domain from the query. * If the TLD is a number, query ARIN, otherwise, use TLD.whois-server.net. * If the domain does not contain '.', check to see if it is an NSI handle - * (starts with '!') or a CORE handle (COCO-[0-9]+ or COHO-[0-9]+). - * Fall back to NICHOST for the non-handle case. + * (starts with '!') or a CORE handle (COCO-[0-9]+ or COHO-[0-9]+) or an + * ASN (starts with AS). Fall back to NICHOST for the non-handle case. */ char * choose_server(const char *name, const char *country) @@ -286,6 +286,9 @@ choose_server(const char *name, const char *country) strncasecmp(name, "COHO-", 5) == 0) && strtol(name + 5, &ep, 10) > 0 && *ep == '\0') return (CNICHOST); + else if ((strncasecmp(name, "AS", 2) == 0) && + strtol(name + 2, &ep, 10) > 0 && *ep == '\0') + return (MNICHOST); else return (NICHOST); } else if (isdigit(*(++qhead))) |