xref: /openbsd-src/include/rpc/pmap_rmt.h (revision cb7760d181b85988239aa31e102cfd38c6ab30ad)
1 /*	$OpenBSD: pmap_rmt.h,v 1.5 2010/09/01 14:43:34 millert Exp $	*/
2 /*	$NetBSD: pmap_rmt.h,v 1.4 1994/10/26 00:57:01 cgd Exp $	*/
3 
4 /*
5  * Copyright (c) 2010, Oracle America, Inc.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above
14  *       copyright notice, this list of conditions and the following
15  *       disclaimer in the documentation and/or other materials
16  *       provided with the distribution.
17  *     * Neither the name of the "Oracle America, Inc." nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  *   FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  *   COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
26  *   INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  *   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
28  *   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  *   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30  *   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31  *   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  *
34  *	from: @(#)pmap_rmt.h 1.2 88/02/08 SMI
35  *	@(#)pmap_rmt.h	2.1 88/07/29 4.0 RPCSRC
36  */
37 
38 /*
39  * Structures and XDR routines for parameters to and replies from
40  * the portmapper remote-call-service.
41  */
42 
43 #ifndef _RPC_PMAPRMT_H
44 #define _RPC_PMAPRMT_H
45 #include <sys/cdefs.h>
46 
47 struct rmtcallargs {
48 	unsigned long prog, vers, proc, arglen;
49 	caddr_t args_ptr;
50 	xdrproc_t xdr_args;
51 };
52 
53 struct rmtcallres {
54 	unsigned long *port_ptr;
55 	unsigned long resultslen;
56 	caddr_t results_ptr;
57 	xdrproc_t xdr_results;
58 };
59 
60 __BEGIN_DECLS
61 extern bool_t xdr_rmtcall_args(XDR *, struct rmtcallargs *);
62 extern bool_t xdr_rmtcallres(XDR *, struct rmtcallres *);
63 __END_DECLS
64 
65 #endif /* !_RPC_PMAPRMT_H */
66