pmap_prot.h revision 1.6 1 /* $NetBSD: pmap_prot.h,v 1.6 1998/02/10 03:52:16 lukem Exp $ */
2
3 /*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or
9 * program developed by the user.
10 *
11 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
12 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
13 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
14 *
15 * Sun RPC is provided with no support and without any obligation on the
16 * part of Sun Microsystems, Inc. to assist in its use, correction,
17 * modification or enhancement.
18 *
19 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
20 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
21 * OR ANY PART THEREOF.
22 *
23 * In no event will Sun Microsystems, Inc. be liable for any lost revenue
24 * or profits or other special, indirect and consequential damages, even if
25 * Sun has been advised of the possibility of such damages.
26 *
27 * Sun Microsystems, Inc.
28 * 2550 Garcia Avenue
29 * Mountain View, California 94043
30 *
31 * from: @(#)pmap_prot.h 1.14 88/02/08 SMI
32 * @(#)pmap_prot.h 2.1 88/07/29 4.0 RPCSRC
33 */
34
35 /*
36 * pmap_prot.h
37 * Protocol for the local binder service, or pmap.
38 *
39 * Copyright (C) 1984, Sun Microsystems, Inc.
40 *
41 * The following procedures are supported by the protocol:
42 *
43 * PMAPPROC_NULL() returns ()
44 * takes nothing, returns nothing
45 *
46 * PMAPPROC_SET(struct pmap) returns (bool_t)
47 * TRUE is success, FALSE is failure. Registers the tuple
48 * [prog, vers, prot, port].
49 *
50 * PMAPPROC_UNSET(struct pmap) returns (bool_t)
51 * TRUE is success, FALSE is failure. Un-registers pair
52 * [prog, vers]. prot and port are ignored.
53 *
54 * PMAPPROC_GETPORT(struct pmap) returns (u_int32_t).
55 * 0 is failure. Otherwise returns the port number where the pair
56 * [prog, vers] is registered. It may lie!
57 *
58 * PMAPPROC_DUMP() RETURNS (struct pmaplist *)
59 *
60 * PMAPPROC_CALLIT(unsigned, unsigned, unsigned, string<>)
61 * RETURNS (port, string<>);
62 * usage: encapsulatedresults = PMAPPROC_CALLIT(prog, vers, proc,
63 * encapsulatedargs);
64 * Calls the procedure on the local machine. If it is not registered,
65 * this procedure is quite; ie it does not return error information!!!
66 * This procedure only is supported on RPC/UDP and calls via
67 * RPC/UDP. This routine only passes null authentication parameters.
68 * This file has no interface to xdr routines for PMAPPROC_CALLIT.
69 *
70 * The service supports remote procedure calls on udp/ip or tcp/ip socket 111.
71 */
72
73 #ifndef _RPC_PMAP_PROT_H_
74 #define _RPC_PMAP_PROT_H_
75 #include <sys/cdefs.h>
76
77 #define PMAPPORT ((in_port_t)111)
78 #define PMAPPROG ((u_int32_t)100000)
79 #define PMAPVERS ((u_int32_t)2)
80 #define PMAPVERS_PROTO ((u_int32_t)2)
81 #define PMAPVERS_ORIG ((u_int32_t)1)
82 #define PMAPPROC_NULL ((u_int32_t)0)
83 #define PMAPPROC_SET ((u_int32_t)1)
84 #define PMAPPROC_UNSET ((u_int32_t)2)
85 #define PMAPPROC_GETPORT ((u_int32_t)3)
86 #define PMAPPROC_DUMP ((u_int32_t)4)
87 #define PMAPPROC_CALLIT ((u_int32_t)5)
88
89 struct pmap {
90 u_int32_t pm_prog;
91 u_int32_t pm_vers;
92 u_int32_t pm_prot;
93 u_int32_t pm_port;
94 };
95
96 struct pmaplist {
97 struct pmap pml_map;
98 struct pmaplist *pml_next;
99 };
100
101 __BEGIN_DECLS
102 extern bool_t xdr_pmap __P((XDR *, struct pmap *));
103 extern bool_t xdr_pmaplist __P((XDR *, struct pmaplist **));
104 __END_DECLS
105
106 #endif /* !_RPC_PMAP_PROT_H_ */
107