Home | History | Annotate | Line # | Download | only in rpc
pmap_rmt.h revision 1.4
      1  1.4      cgd /*	$NetBSD: pmap_rmt.h,v 1.4 1994/10/26 00:57:01 cgd Exp $	*/
      2  1.4      cgd 
      3  1.1  deraadt /*
      4  1.1  deraadt  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
      5  1.1  deraadt  * unrestricted use provided that this legend is included on all tape
      6  1.1  deraadt  * media and as a part of the software program in whole or part.  Users
      7  1.1  deraadt  * may copy or modify Sun RPC without charge, but are not authorized
      8  1.1  deraadt  * to license or distribute it to anyone else except as part of a product or
      9  1.1  deraadt  * program developed by the user.
     10  1.1  deraadt  *
     11  1.1  deraadt  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
     12  1.1  deraadt  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
     13  1.1  deraadt  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
     14  1.1  deraadt  *
     15  1.1  deraadt  * Sun RPC is provided with no support and without any obligation on the
     16  1.1  deraadt  * part of Sun Microsystems, Inc. to assist in its use, correction,
     17  1.1  deraadt  * modification or enhancement.
     18  1.1  deraadt  *
     19  1.1  deraadt  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
     20  1.1  deraadt  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
     21  1.1  deraadt  * OR ANY PART THEREOF.
     22  1.1  deraadt  *
     23  1.1  deraadt  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
     24  1.1  deraadt  * or profits or other special, indirect and consequential damages, even if
     25  1.1  deraadt  * Sun has been advised of the possibility of such damages.
     26  1.1  deraadt  *
     27  1.1  deraadt  * Sun Microsystems, Inc.
     28  1.1  deraadt  * 2550 Garcia Avenue
     29  1.1  deraadt  * Mountain View, California  94043
     30  1.3  mycroft  *
     31  1.3  mycroft  *	from: @(#)pmap_rmt.h 1.2 88/02/08 SMI
     32  1.4      cgd  *	@(#)pmap_rmt.h	2.1 88/07/29 4.0 RPCSRC
     33  1.1  deraadt  */
     34  1.1  deraadt 
     35  1.1  deraadt /*
     36  1.1  deraadt  * Structures and XDR routines for parameters to and replies from
     37  1.1  deraadt  * the portmapper remote-call-service.
     38  1.1  deraadt  *
     39  1.1  deraadt  * Copyright (C) 1986, Sun Microsystems, Inc.
     40  1.1  deraadt  */
     41  1.1  deraadt 
     42  1.2   brezak #ifndef _RPC_PMAPRMT_H
     43  1.2   brezak #define _RPC_PMAPRMT_H
     44  1.2   brezak #include <sys/cdefs.h>
     45  1.2   brezak 
     46  1.1  deraadt struct rmtcallargs {
     47  1.1  deraadt 	u_long prog, vers, proc, arglen;
     48  1.1  deraadt 	caddr_t args_ptr;
     49  1.1  deraadt 	xdrproc_t xdr_args;
     50  1.1  deraadt };
     51  1.1  deraadt 
     52  1.1  deraadt struct rmtcallres {
     53  1.1  deraadt 	u_long *port_ptr;
     54  1.1  deraadt 	u_long resultslen;
     55  1.1  deraadt 	caddr_t results_ptr;
     56  1.1  deraadt 	xdrproc_t xdr_results;
     57  1.1  deraadt };
     58  1.1  deraadt 
     59  1.2   brezak __BEGIN_DECLS
     60  1.2   brezak extern bool_t xdr_rmtcall_args	__P((XDR *, struct rmtcallargs *));
     61  1.2   brezak extern bool_t xdr_rmtcallres	__P((XDR *, struct rmtcallres *));
     62  1.2   brezak __END_DECLS
     63  1.2   brezak 
     64  1.2   brezak #endif /* !_RPC_PMAPRMT_H */
     65