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
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]
23 * Copyright (c) 1986-1994,2001 by Sun Microsystems, Inc.
24 * All rights reserved.
26 * Ye olde non-reentrant interface (MT-unsafe, caveat utor)
28 * lib/libsocket/inet/getservent.c
31 #pragma ident "%Z%%M% %I% %E% SMI"
34 #include <nss_dbdefs.h>
36 #ifdef NSS_INCLUDE_UNSAFE
39 * Don't free this, even on an endservent(), because bitter experience shows
40 * that there's production code that does getXXXbyYYY(), then endXXXent(),
41 * and then continues to use the pointer it got back.
43 static nss_XbyY_buf_t
*buffer
;
45 NSS_XbyY_ALLOC(&buffer, (int)sizeof (struct servent), NSS_BUFLEN_SERVICES)
46 /* === ?? set ENOMEM on failure? */
49 getservbyname(const char *nam
, const char *proto
)
52 struct servent
*res
= 0;
54 if ((b
= GETBUF()) != 0) {
55 res
= getservbyname_r(nam
, proto
,
56 b
->result
, b
->buffer
, b
->buflen
);
62 getservbyport(int port
, const char *proto
)
65 struct servent
*res
= 0;
67 if ((b
= GETBUF()) != 0) {
68 res
= getservbyport_r(port
, proto
,
69 b
->result
, b
->buffer
, b
->buflen
);
78 struct servent
*res
= 0;
80 if ((b
= GETBUF()) != 0) {
81 res
= getservent_r(b
->result
, b
->buffer
, b
->buflen
);
86 #endif /* NSS_INCLUDE_UNSAFE */