/* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #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.11 (Berkeley) 03/02/91"; #endif /* not lint */ #include #include #include #include #include #define NICHOST "nic.ddn.mil" main(argc, argv) int argc; char **argv; { extern char *optarg; extern int optind; register FILE *sfi, *sfo; register int ch; struct sockaddr_in sin; struct hostent *hp; struct servent *sp; int 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) usage(); hp = gethostbyname(host); if (hp == NULL) { (void)fprintf(stderr, "whois: %s: ", host); herror((char *)NULL); exit(1); } host = hp->h_name; s = socket(hp->h_addrtype, SOCK_STREAM, 0); if (s < 0) { perror("whois: socket"); exit(1); } bzero((caddr_t)&sin, sizeof (sin)); sin.sin_family = hp->h_addrtype; if (bind(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) { perror("whois: bind"); exit(1); } bcopy(hp->h_addr, (char *)&sin.sin_addr, hp->h_length); sp = getservbyname("whois", "tcp"); if (sp == NULL) { (void)fprintf(stderr, "whois: whois/tcp: unknown service\n"); exit(1); } sin.sin_port = sp->s_port; if (connect(s, (struct sockaddr *)&sin, sizeof(sin)) < 0) { perror("whois: connect"); exit(1); } sfi = fdopen(s, "r"); sfo = fdopen(s, "w"); if (sfi == NULL || sfo == NULL) { perror("whois: fdopen"); (void)close(s); exit(1); } while (argc-- > 1) (void)fprintf(sfo, "%s ", *argv++); (void)fprintf(sfo, "%s\r\n", *argv); (void)fflush(sfo); while ((ch = getc(sfi)) != EOF) putchar(ch); exit(0); } usage() { (void)fprintf(stderr, "usage: whois [-h hostname] name ...\n"); exit(1); }