1 /* 2 * Copyright (c) 1983 Regents of the University of California. 3 * All rights reserved. The Berkeley software License Agreement 4 * specifies the terms and conditions for redistribution. 5 */ 6 7 #if defined(LIBC_SCCS) && !defined(lint) 8 static char sccsid[] = "@(#)getnetbyname.c 5.2 (Berkeley) 03/09/86"; 9 #endif LIBC_SCCS and not lint 10 11 #include <netdb.h> 12 13 struct netent * 14 getnetbyname(name) 15 register char *name; 16 { 17 register struct netent *p; 18 register char **cp; 19 20 setnetent(0); 21 while (p = getnetent()) { 22 if (strcmp(p->n_name, name) == 0) 23 break; 24 for (cp = p->n_aliases; *cp != 0; cp++) 25 if (strcmp(*cp, name) == 0) 26 goto found; 27 } 28 found: 29 endnetent(); 30 return (p); 31 } 32