1 1.4 christos /* $NetBSD: rpcb_clnt.h,v 1.4 2009/01/11 03:04:12 christos 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 * rpcb_clnt.h 37 1.1 fvdl * Supplies C routines to get to rpcbid services. 38 1.1 fvdl * 39 1.1 fvdl */ 40 1.1 fvdl 41 1.1 fvdl /* 42 1.1 fvdl * Usage: 43 1.1 fvdl * success = rpcb_set(program, version, nconf, address); 44 1.1 fvdl * success = rpcb_unset(program, version, nconf); 45 1.1 fvdl * success = rpcb_getaddr(program, version, nconf, host); 46 1.1 fvdl * head = rpcb_getmaps(nconf, host); 47 1.1 fvdl * clnt_stat = rpcb_rmtcall(nconf, host, program, version, procedure, 48 1.1 fvdl * xdrargs, argsp, xdrres, resp, tout, addr_ptr) 49 1.1 fvdl * success = rpcb_gettime(host, timep) 50 1.1 fvdl * uaddr = rpcb_taddr2uaddr(nconf, taddr); 51 1.1 fvdl * taddr = rpcb_uaddr2uaddr(nconf, uaddr); 52 1.1 fvdl */ 53 1.1 fvdl 54 1.1 fvdl #ifndef _RPC_RPCB_CLNT_H 55 1.1 fvdl #define _RPC_RPCB_CLNT_H 56 1.1 fvdl 57 1.1 fvdl /* #pragma ident "@(#)rpcb_clnt.h 1.13 94/04/25 SMI" */ 58 1.1 fvdl /* rpcb_clnt.h 1.3 88/12/05 SMI */ 59 1.1 fvdl 60 1.1 fvdl #include <rpc/types.h> 61 1.1 fvdl #include <rpc/rpcb_prot.h> 62 1.1 fvdl 63 1.1 fvdl __BEGIN_DECLS 64 1.2 perry extern bool_t rpcb_set(const rpcprog_t, const rpcvers_t, 65 1.2 perry const struct netconfig *, const struct netbuf *); 66 1.2 perry extern bool_t rpcb_unset(const rpcprog_t, const rpcvers_t, 67 1.2 perry const struct netconfig *); 68 1.2 perry extern rpcblist *rpcb_getmaps(const struct netconfig *, const char *); 69 1.4 christos #ifndef __LIBC12_SOURCE__ 70 1.2 perry extern enum clnt_stat rpcb_rmtcall(const struct netconfig *, 71 1.2 perry const char *, const rpcprog_t, 72 1.2 perry const rpcvers_t, const rpcproc_t, 73 1.3 yamt const xdrproc_t, const char *, 74 1.3 yamt const xdrproc_t, caddr_t, 75 1.2 perry const struct timeval, 76 1.4 christos const struct netbuf *) 77 1.4 christos __RENAME(__rpcb_rmtcall50); 78 1.4 christos #endif 79 1.2 perry extern bool_t rpcb_getaddr(const rpcprog_t, const rpcvers_t, 80 1.2 perry const struct netconfig *, struct netbuf *, 81 1.2 perry const char *); 82 1.4 christos #ifndef __LIBC12_SOURCE__ 83 1.4 christos extern bool_t rpcb_gettime(const char *, time_t *) 84 1.4 christos __RENAME(__rpcb_gettime50); 85 1.4 christos #endif 86 1.2 perry extern char *rpcb_taddr2uaddr(struct netconfig *, struct netbuf *); 87 1.2 perry extern struct netbuf *rpcb_uaddr2taddr(struct netconfig *, char *); 88 1.1 fvdl __END_DECLS 89 1.1 fvdl 90 1.1 fvdl #endif /* !_RPC_RPCB_CLNT_H */ 91