rpcent.h revision 1.1 1 1.1 fvdl /* $NetBSD: rpcent.h,v 1.1 2000/06/02 22:57:56 fvdl Exp $ */
2 1.1 fvdl
3 1.1 fvdl /*
4 1.1 fvdl * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 1.1 fvdl * unrestricted use provided that this legend is included on all tape
6 1.1 fvdl * media and as a part of the software program in whole or part. Users
7 1.1 fvdl * may copy or modify Sun RPC without charge, but are not authorized
8 1.1 fvdl * to license or distribute it to anyone else except as part of a product or
9 1.1 fvdl * program developed by the user.
10 1.1 fvdl *
11 1.1 fvdl * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12 1.1 fvdl * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13 1.1 fvdl * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 1.1 fvdl *
15 1.1 fvdl * Sun RPC is provided with no support and without any obligation on the
16 1.1 fvdl * part of Sun Microsystems, Inc. to assist in its use, correction,
17 1.1 fvdl * modification or enhancement.
18 1.1 fvdl *
19 1.1 fvdl * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20 1.1 fvdl * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21 1.1 fvdl * OR ANY PART THEREOF.
22 1.1 fvdl *
23 1.1 fvdl * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24 1.1 fvdl * or profits or other special, indirect and consequential damages, even if
25 1.1 fvdl * Sun has been advised of the possibility of such damages.
26 1.1 fvdl *
27 1.1 fvdl * Sun Microsystems, Inc.
28 1.1 fvdl * 2550 Garcia Avenue
29 1.1 fvdl * Mountain View, California 94043
30 1.1 fvdl */
31 1.1 fvdl /*
32 1.1 fvdl * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
33 1.1 fvdl */
34 1.1 fvdl
35 1.1 fvdl /*
36 1.1 fvdl * rpcent.h,
37 1.1 fvdl * For converting rpc program numbers to names etc.
38 1.1 fvdl *
39 1.1 fvdl */
40 1.1 fvdl
41 1.1 fvdl #ifndef _RPC_RPCENT_H
42 1.1 fvdl #define _RPC_RPCENT_H
43 1.1 fvdl
44 1.1 fvdl /* #pragma ident "@(#)rpcent.h 1.13 94/04/25 SMI" */
45 1.1 fvdl /* @(#)rpcent.h 1.1 88/12/06 SMI */
46 1.1 fvdl
47 1.1 fvdl
48 1.1 fvdl struct rpcent {
49 1.1 fvdl char *r_name; /* name of server for this rpc program */
50 1.1 fvdl char **r_aliases; /* alias list */
51 1.1 fvdl int r_number; /* rpc program number */
52 1.1 fvdl };
53 1.1 fvdl
54 1.1 fvdl __BEGIN_DECLS
55 1.1 fvdl extern struct rpcent *getrpcbyname_r __P((const char *, struct rpcent *,
56 1.1 fvdl char *, int));
57 1.1 fvdl extern struct rpcent *getrpcbynumber_r __P((int, struct rpcent *, char *, int));
58 1.1 fvdl extern struct rpcent *getrpcent_r __P((struct rpcent *, char *, int));
59 1.1 fvdl
60 1.1 fvdl /* Old interfaces that return a pointer to a static area; MT-unsafe */
61 1.1 fvdl extern struct rpcent *getrpcbyname __P((char *));
62 1.1 fvdl extern struct rpcent *getrpcbynumber __P((int));
63 1.1 fvdl extern struct rpcent *getrpcent __P((void));
64 1.1 fvdl extern void setrpcent __P((int));
65 1.1 fvdl extern void endrpcent __P((void));
66 1.1 fvdl __END_DECLS
67 1.1 fvdl
68 1.1 fvdl #endif /* !_RPC_ENT_H_ */
69