Merge up from branch.
[shibboleth/cpp-sp.git] / oncrpc / rpc / rpc.h
1 /*********************************************************************
2  * RPC for the Windows NT Operating System
3  * 1993 by Martin F. Gergeleit
4  * Users may use, copy or modify Sun RPC for the Windows NT Operating 
5  * System according to the Sun copyright below.
6  *
7  * RPC for the Windows NT Operating System COMES WITH ABSOLUTELY NO 
8  * WARRANTY, NOR WILL I BE LIABLE FOR ANY DAMAGES INCURRED FROM THE 
9  * USE OF. USE ENTIRELY AT YOUR OWN RISK!!!
10  *********************************************************************/
11
12 /* @(#)rpc.h    2.3 88/08/10 4.0 RPCSRC; from 1.9 88/02/08 SMI */
13 /*
14  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
15  * unrestricted use provided that this legend is included on all tape
16  * media and as a part of the software program in whole or part.  Users
17  * may copy or modify Sun RPC without charge, but are not authorized
18  * to license or distribute it to anyone else except as part of a product or
19  * program developed by the user.
20  *
21  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
22  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
24  *
25  * Sun RPC is provided with no support and without any obligation on the
26  * part of Sun Microsystems, Inc. to assist in its use, correction,
27  * modification or enhancement.
28  *
29  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
30  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
31  * OR ANY PART THEREOF.
32  *
33  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
34  * or profits or other special, indirect and consequential damages, even if
35  * Sun has been advised of the possibility of such damages.
36  *
37  * Sun Microsystems, Inc.
38  * 2550 Garcia Avenue
39  * Mountain View, California  94043
40  */
41
42 /*
43  * rpc.h, Just includes the billions of rpc header files necessary to
44  * do remote procedure calling.
45  *
46  * Copyright (C) 1984, Sun Microsystems, Inc.
47  */
48 #ifndef __RPC_HEADER__
49 #define __RPC_HEADER__
50
51 /* A bunch of defines to hide this implementation, to make sure it
52  * doesn't shadow the system RPC library...
53  */
54
55 #define clnttcp_create  onc_clnttcp_create
56 #define clnt_spcreateerror      onc_clnt_spcreateerror
57 #define svc_register    onc_svc_register
58 #define svc_getreqset   onc_svc_getreqset
59 #define svcfd_create    onc_svcfd_create
60
61 #ifndef FD_SETSIZE
62 # define FD_SETSIZE 1024
63 #endif
64
65
66 #ifdef WIN32
67
68 #include <stdlib.h>
69 #include <time.h>
70 #include <winsock.h>
71 #include <rpc/types.h>          /* some typedefs */
72 #include <process.h>
73
74 #define WSAerrno (WSAGetLastError())
75 #define gettimeofday(tv,tz) ((tv)->tv_sec = time(0), (tv)->tv_usec = 0)
76
77 #ifdef __cplusplus
78 extern "C" {
79 #define DOTS ...
80 #else
81 #define DOTS
82 #endif
83
84 extern int rpc_nt_init(void);
85 extern int rpc_nt_exit(void);
86 extern void nt_rpc_report(DOTS);
87
88 #include <rpc/bcopy.h>
89 extern int xdr_opaque_auth(DOTS);
90
91 #ifdef __cplusplus
92 };
93 #endif
94
95 #else
96 #include <rpc/types.h>          /* some typedefs */
97 #include <netinet/in.h>
98 #include <pthread.h>
99 #endif
100
101 /* external data representation interfaces */
102 #include <rpc/xdr.h>            /* generic (de)serializer */
103
104 /* Client side only authentication */
105 #include <rpc/auth.h>           /* generic authenticator (client side) */
106
107 /* Client side (mostly) remote procedure call */
108 #include <rpc/clnt.h>           /* generic rpc stuff */
109
110 /* semi-private protocol headers */
111 #include <rpc/rpc_msg.h>        /* protocol for rpc messages */
112 #include <rpc/auth_unix.h>      /* protocol for unix style cred */
113
114 /*
115  *  Uncomment-out the next line if you are building the rpc library with
116  *  DES Authentication (see the README file in the secure_rpc/ directory).
117  */
118 /*#include <rpc/auth_des.h>     /* protocol for des style cred */
119
120 /* Server side only remote procedure callee */
121 #include <rpc/svc.h>            /* service manager and multiplexer */
122 #include <rpc/svc_auth.h>       /* service side authenticator */
123
124 #ifdef __cplusplus
125 extern "C" {
126 #endif
127
128 /* Oct 2004: Additions by Scott Cantor to support POSIX and Win32 threads. */
129 #ifdef WIN32
130 extern DWORD __thr_key;
131 extern CRITICAL_SECTION __thr_mutex;
132 #else
133 extern pthread_mutex_t __thr_mutex;
134 #endif
135
136 extern struct opaque_auth* _thr_null_auth(void);
137 extern struct rpc_createerr_t* _thr_rpc_createerr(void);
138 extern fd_set* _thr_svc_fdset(void);
139
140 #ifdef __cplusplus
141 }
142 #endif
143
144 #endif /* ndef __RPC_HEADER__ */