xref: /minix3/include/rpc/pmap_clnt.h (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /*	$NetBSD: pmap_clnt.h,v 1.11 2009/01/11 03:04:12 christos Exp $	*/
2*2fe8fb19SBen Gras 
3*2fe8fb19SBen Gras /*
4*2fe8fb19SBen Gras  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5*2fe8fb19SBen Gras  * unrestricted use provided that this legend is included on all tape
6*2fe8fb19SBen Gras  * media and as a part of the software program in whole or part.  Users
7*2fe8fb19SBen Gras  * may copy or modify Sun RPC without charge, but are not authorized
8*2fe8fb19SBen Gras  * to license or distribute it to anyone else except as part of a product or
9*2fe8fb19SBen Gras  * program developed by the user.
10*2fe8fb19SBen Gras  *
11*2fe8fb19SBen Gras  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12*2fe8fb19SBen Gras  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13*2fe8fb19SBen Gras  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14*2fe8fb19SBen Gras  *
15*2fe8fb19SBen Gras  * Sun RPC is provided with no support and without any obligation on the
16*2fe8fb19SBen Gras  * part of Sun Microsystems, Inc. to assist in its use, correction,
17*2fe8fb19SBen Gras  * modification or enhancement.
18*2fe8fb19SBen Gras  *
19*2fe8fb19SBen Gras  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20*2fe8fb19SBen Gras  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21*2fe8fb19SBen Gras  * OR ANY PART THEREOF.
22*2fe8fb19SBen Gras  *
23*2fe8fb19SBen Gras  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24*2fe8fb19SBen Gras  * or profits or other special, indirect and consequential damages, even if
25*2fe8fb19SBen Gras  * Sun has been advised of the possibility of such damages.
26*2fe8fb19SBen Gras  *
27*2fe8fb19SBen Gras  * Sun Microsystems, Inc.
28*2fe8fb19SBen Gras  * 2550 Garcia Avenue
29*2fe8fb19SBen Gras  * Mountain View, California  94043
30*2fe8fb19SBen Gras  *
31*2fe8fb19SBen Gras  *	from: @(#)pmap_clnt.h 1.11 88/02/08 SMI
32*2fe8fb19SBen Gras  *	@(#)pmap_clnt.h	2.1 88/07/29 4.0 RPCSRC
33*2fe8fb19SBen Gras  */
34*2fe8fb19SBen Gras 
35*2fe8fb19SBen Gras /*
36*2fe8fb19SBen Gras  * pmap_clnt.h
37*2fe8fb19SBen Gras  * Supplies C routines to get to portmap services.
38*2fe8fb19SBen Gras  *
39*2fe8fb19SBen Gras  * Copyright (C) 1984, Sun Microsystems, Inc.
40*2fe8fb19SBen Gras  */
41*2fe8fb19SBen Gras 
42*2fe8fb19SBen Gras /*
43*2fe8fb19SBen Gras  * Usage:
44*2fe8fb19SBen Gras  *	success = pmap_set(program, version, protocol, port);
45*2fe8fb19SBen Gras  *	success = pmap_unset(program, version);
46*2fe8fb19SBen Gras  *	port = pmap_getport(address, program, version, protocol);
47*2fe8fb19SBen Gras  *	head = pmap_getmaps(address);
48*2fe8fb19SBen Gras  *	clnt_stat = pmap_rmtcall(address, program, version, procedure,
49*2fe8fb19SBen Gras  *		xdrargs, argsp, xdrres, resp, tout, port_ptr)
50*2fe8fb19SBen Gras  *		(works for udp only.)
51*2fe8fb19SBen Gras  * 	clnt_stat = clnt_broadcast(program, version, procedure,
52*2fe8fb19SBen Gras  *		xdrargs, argsp,	xdrres, resp, eachresult)
53*2fe8fb19SBen Gras  *		(like pmap_rmtcall, except the call is broadcasted to all
54*2fe8fb19SBen Gras  *		locally connected nets.  For each valid response received,
55*2fe8fb19SBen Gras  *		the procedure eachresult is called.  Its form is:
56*2fe8fb19SBen Gras  *	done = eachresult(resp, raddr)
57*2fe8fb19SBen Gras  *		bool_t done;
58*2fe8fb19SBen Gras  *		caddr_t resp;
59*2fe8fb19SBen Gras  *		struct sockaddr_in raddr;
60*2fe8fb19SBen Gras  *		where resp points to the results of the call and raddr is the
61*2fe8fb19SBen Gras  *		address if the responder to the broadcast.
62*2fe8fb19SBen Gras  */
63*2fe8fb19SBen Gras 
64*2fe8fb19SBen Gras #ifndef _RPC_PMAP_CLNT_H_
65*2fe8fb19SBen Gras #define _RPC_PMAP_CLNT_H_
66*2fe8fb19SBen Gras #include <sys/cdefs.h>
67*2fe8fb19SBen Gras 
68*2fe8fb19SBen Gras __BEGIN_DECLS
69*2fe8fb19SBen Gras extern bool_t		pmap_set(u_long, u_long, int, int);
70*2fe8fb19SBen Gras extern bool_t		pmap_unset(u_long, u_long);
71*2fe8fb19SBen Gras extern struct pmaplist	*pmap_getmaps(struct sockaddr_in *);
72*2fe8fb19SBen Gras #ifndef __LIBC12_SOURCE__
73*2fe8fb19SBen Gras extern enum clnt_stat	pmap_rmtcall(struct sockaddr_in *,
74*2fe8fb19SBen Gras 					u_long, u_long, u_long,
75*2fe8fb19SBen Gras 					xdrproc_t, caddr_t,
76*2fe8fb19SBen Gras 					xdrproc_t, caddr_t,
77*2fe8fb19SBen Gras 					struct timeval, u_long *)
78*2fe8fb19SBen Gras 					__RENAME(__pmap_rmtcall50);
79*2fe8fb19SBen Gras #endif
80*2fe8fb19SBen Gras extern enum clnt_stat	clnt_broadcast(u_long, u_long, u_long,
81*2fe8fb19SBen Gras 					xdrproc_t, char *,
82*2fe8fb19SBen Gras 					xdrproc_t, char *,
83*2fe8fb19SBen Gras 					resultproc_t);
84*2fe8fb19SBen Gras extern u_short		pmap_getport(struct sockaddr_in *,
85*2fe8fb19SBen Gras 					u_long, u_long, u_int);
86*2fe8fb19SBen Gras __END_DECLS
87*2fe8fb19SBen Gras 
88*2fe8fb19SBen Gras #endif /* !_RPC_PMAP_CLNT_H_ */
89