import less(1)
[unleashed/tickless.git] / usr / src / lib / libc / port / inet / getprotoent.c
blob27554e402aabeac3c0076f07a6d263fb08446787
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright (c) 1986-1992,2001 by Sun Microsystems, Inc.
24 * All rights reserved.
27 #pragma ident "%Z%%M% %I% %E% SMI"
29 #include <netdb.h>
30 #include <nss_dbdefs.h>
34 * Ye olde non-reentrant interface (MT-unsafe, caveat utor)
38 * Don't free this, even on an endprotoent(), because bitter experience shows
39 * that there's production code that does getXXXbyYYY(), then endXXXent(),
40 * and then continues to use the pointer it got back.
42 static nss_XbyY_buf_t *buffer;
43 #define GETBUF() \
44 NSS_XbyY_ALLOC(&buffer, (int)sizeof (struct protoent), NSS_BUFLEN_PROTOCOLS)
45 /* === ?? set ENOMEM on failure? */
47 struct protoent *
48 getprotobyname(const char *nam)
50 nss_XbyY_buf_t *b;
51 struct protoent *res = 0;
53 if ((b = GETBUF()) != 0) {
54 res = getprotobyname_r(nam, b->result, b->buffer, b->buflen);
56 return (res);
59 struct protoent *
60 getprotobynumber(int proto)
62 nss_XbyY_buf_t *b;
63 struct protoent *res = 0;
65 if ((b = GETBUF()) != 0) {
66 res = getprotobynumber_r(proto, b->result,
67 b->buffer, b->buflen);
69 return (res);
72 struct protoent *
73 getprotoent()
75 nss_XbyY_buf_t *b;
76 struct protoent *res = 0;
78 if ((b = GETBUF()) != 0) {
79 res = getprotoent_r(b->result, b->buffer, b->buflen);
81 return (res);