remove manual subsections
[unix-history] / usr / src / lib / libc / net / getnetbyaddr.c
CommitLineData
8ea4199d
DF
1/*
2 * Copyright (c) 1983 Regents of the University of California.
6b2f9dd0
KB
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
f4f66d2c
KB
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
8ea4199d
DF
16 */
17
2ce81398 18#if defined(LIBC_SCCS) && !defined(lint)
f4f66d2c 19static char sccsid[] = "@(#)getnetbyaddr.c 5.6 (Berkeley) %G%";
6b2f9dd0 20#endif /* LIBC_SCCS and not lint */
ee9f7735
SL
21
22#include <netdb.h>
23
5442f2c7
JL
24extern int _net_stayopen;
25
ee9f7735 26struct netent *
86755108 27getnetbyaddr(net, type)
8fed5136
KB
28 register long net;
29 register int type;
ee9f7735
SL
30{
31 register struct netent *p;
32
5442f2c7 33 setnetent(_net_stayopen);
ee9f7735 34 while (p = getnetent())
86755108 35 if (p->n_addrtype == type && p->n_net == net)
ee9f7735 36 break;
5442f2c7
JL
37 if (!_net_stayopen)
38 endnetent();
ee9f7735
SL
39 return (p);
40}