Import TBBT (NFS trace replay).
[bluesky.git] / TBBT / trace_play / rpc / rpc.h
1 /*
2  * @(#)rpc.h     2.1     97/10/23
3  */
4
5 /* @(#)rpc.h    2.4 89/07/11 4.0 RPCSRC; from 1.9 88/02/08 SMI */
6 /*
7  *   Copyright (c) 1992-1997,2001 by Standard Performance Evaluation Corporation
8  *      All rights reserved.
9  *              Standard Performance Evaluation Corporation (SPEC)
10  *              6585 Merchant Place, Suite 100
11  *              Warrenton, VA 20187
12  *
13  *      This product contains benchmarks acquired from several sources who
14  *      understand and agree with SPEC's goal of creating fair and objective
15  *      benchmarks to measure computer performance.
16  *
17  *      This copyright notice is placed here only to protect SPEC in the
18  *      event the source is misused in any manner that is contrary to the
19  *      spirit, the goals and the intent of SPEC.
20  *
21  *      The source code is provided to the user or company under the license
22  *      agreement for the SPEC Benchmark Suite for this product.
23  */
24 /*
25  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
26  * unrestricted use provided that this legend is included on all tape
27  * media and as a part of the software program in whole or part.  Users
28  * may copy or modify Sun RPC without charge, but are not authorized
29  * to license or distribute it to anyone else except as part of a product or
30  * program developed by the user.
31  * 
32  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
33  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
34  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
35  * 
36  * Sun RPC is provided with no support and without any obligation on the
37  * part of Sun Microsystems, Inc. to assist in its use, correction,
38  * modification or enhancement.
39  *
40  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
41  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
42  * OR ANY PART THEREOF.
43  *
44  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
45  * or profits or other special, indirect and consequential damages, even if
46  * Sun has been advised of the possibility of such damages.
47  *
48  * Sun Microsystems, Inc.
49  * 2550 Garcia Avenue
50  * Mountain View, California  94043
51  */
52
53 /*
54  * rpc.h, Just includes the billions of rpc header files necessary to
55  * do remote procedure calling.
56  *
57  * Copyright (C) 1984, Sun Microsystems, Inc.
58  */
59
60 #ifndef __RPC_HEADER__
61 #define __RPC_HEADER__
62
63 #include "rpc/types.h"          /* some typedefs */
64
65 #include "rpc/osdep.h"
66
67 /* external data representation interfaces */
68 #include "rpc/xdr.h"            /* generic (de)serializer */
69
70 /* Client side only authentication */
71 #include "rpc/auth.h"           /* generic authenticator (client side) */
72
73 /* Client side (mostly) remote procedure call */
74 #include "rpc/clnt.h"           /* generic rpc stuff */
75
76 #include "rpc/pmap_clnt.h"
77
78 /* semi-private protocol headers */
79 #include "rpc/rpc_msg.h"        /* protocol for rpc messages */
80 #include "rpc/auth_unix.h"      /* protocol for unix style cred */
81 /*
82  *  Uncomment-out the next line if you are building the rpc library with    
83  *  DES Authentication (see the README file in the secure_rpc/ directory).
84  */
85 #ifdef notdef
86 #include "rpc/auth_des.h"       /* protocol for des style cred */
87 #endif
88
89 /* Server side only remote procedure callee */
90 #include "rpc/svc.h"            /* service manager and multiplexer */
91 #include "rpc/svc_auth.h"       /* service side authenticator */
92
93 #endif /* ndef __RPC_HEADER__ */