add getopt; add Berkeley specific header
[unix-history] / usr / src / usr.bin / whois / whois.c
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of California at Berkeley. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
#ifndef lint
char copyright[] =
"@(#) Copyright (c) 1980 Regents of the University of California.\n\
All rights reserved.\n";
#endif /* not lint */
#ifndef lint
static char sccsid[] = "@(#)whois.c 5.4 (Berkeley) %G%";
#endif /* not lint */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <stdio.h>
#include <netdb.h>
#define NICHOST "sri-nic.arpa"
main(argc, argv)
int argc;
char *argv[];
{
extern char *optarg;
extern int optind;
register FILE *sfi, *sfo;
register int c;
struct sockaddr_in sin;
struct hostent *hp;
struct servent *sp;
int ch, s;
char *host;
host = NICHOST;
while ((ch = getopt(argc, argv, "h")) != EOF)
switch((char)ch) {
case 'h':
host = optarg;
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
if (argc != 1)
usage();
hp = gethostbyname(host);
if (hp == NULL) {
fprintf(stderr, "whois: %s: host unknown\n", host);
exit(1);
}
host = hp->h_name;
s = socket(hp->h_addrtype, SOCK_STREAM, 0, 0);
if (s < 0) {
perror("whois: socket");
exit(2);
}
bzero((caddr_t)&sin, sizeof (sin));
sin.sin_family = hp->h_addrtype;
if (bind(s, &sin, sizeof (sin), 0) < 0) {
perror("whois: bind");
exit(3);
}
bcopy(hp->h_addr, &sin.sin_addr, hp->h_length);
sp = getservbyname("whois", "tcp");
if (sp == NULL) {
fprintf(stderr, "whois: whois/tcp: unknown service\n");
exit(4);
}
sin.sin_port = sp->s_port;
if (connect(s, &sin, sizeof (sin), 0) < 0) {
perror("whois: connect");
exit(5);
}
sfi = fdopen(s, "r");
sfo = fdopen(s, "w");
if (sfi == NULL || sfo == NULL) {
perror("fdopen");
close(s);
exit(1);
}
fprintf(sfo, "%s\r\n", *argv);
(void)fflush(sfo);
while ((c = getc(sfi)) != EOF)
putchar(c);
}
static
usage()
{
fprintf(stderr, "usage: whois [-h host] name\n");
exit(1);
}