1 1.3 perry /* $NetBSD: rpcent.h,v 1.3 2005/02/03 04:39:32 perry 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.3 perry extern struct rpcent *getrpcbyname_r(const char *, struct rpcent *, 56 1.3 perry char *, int); 57 1.3 perry extern struct rpcent *getrpcbynumber_r(int, struct rpcent *, char *, int); 58 1.3 perry extern struct rpcent *getrpcent_r(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.3 perry extern struct rpcent *getrpcbyname(const char *); 62 1.3 perry extern struct rpcent *getrpcbynumber(int); 63 1.3 perry extern struct rpcent *getrpcent(void); 64 1.3 perry extern void setrpcent(int); 65 1.3 perry extern void endrpcent(void); 66 1.1 fvdl __END_DECLS 67 1.1 fvdl 68 1.1 fvdl #endif /* !_RPC_ENT_H_ */ 69