Subversion Repositories SvarDOS

Rev

Rev 616 | Details | Compare with Previous | Last modification | View Log | RSS feed

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