add some #defines to rpc/rpc.h to not shadow system-library symbols
[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_destroy    onc_clnt_destroy
57 #define clnt_spcreateerror      onc_clnt_spcreateerror
58
59 #define svcfd_create    onc_svcfd_create
60 #define svc_register    onc_svc_register
61 #define svc_destroy     onc_svc_destroy
62 #define svc_getreqset   onc_svc_getreqset
63
64
65 #ifdef WIN32
66 #define FD_SETSIZE      128
67
68 #include <stdlib.h>
69 #include <winsock.h>
70 #include <rpc/types.h>          /* some typedefs */
71 #include <process.h>
72
73 #define WSAerrno (WSAGetLastError())
74 #define gettimeofday(tv,tz) ((tv)->tv_sec = time(0), (tv)->tv_usec = 0)
75
76 #ifdef __cplusplus
77 extern "C" {
78 #define DOTS ...
79 #else
80 #define DOTS
81 #endif
82
83 extern int rpc_nt_init(void);
84 extern int rpc_nt_exit(void);
85 extern void nt_rpc_report(DOTS);
86
87 #include <rpc/bcopy.h>
88 extern int xdr_opaque_auth(DOTS);
89
90 #ifdef __cplusplus
91 };
92 #endif
93
94 #else
95 #include <rpc/types.h>          /* some typedefs */
96 #include <netinet/in.h>
97 #endif
98
99 /* external data representation interfaces */
100 #include <rpc/xdr.h>            /* generic (de)serializer */
101
102 /* Client side only authentication */
103 #include <rpc/auth.h>           /* generic authenticator (client side) */
104
105 /* Client side (mostly) remote procedure call */
106 #include <rpc/clnt.h>           /* generic rpc stuff */
107
108 /* semi-private protocol headers */
109 #include <rpc/rpc_msg.h>        /* protocol for rpc messages */
110 #ifdef WIN32
111 #include <rpc/auth_uni.h>       /* protocol for unix style cred */
112 #else
113 #include <rpc/auth_unix.h>      /* protocol for unix style cred */
114 #endif
115 /*
116  *  Uncomment-out the next line if you are building the rpc library with
117  *  DES Authentication (see the README file in the secure_rpc/ directory).
118  */
119 /*#include <rpc/auth_des.h>     /* protocol for des style cred */
120
121 /* Server side only remote procedure callee */
122 #include <rpc/svc.h>            /* service manager and multiplexer */
123 #include <rpc/svc_auth.h>       /* service side authenticator */
124
125 /*
126  * COMMENT OUT THE NEXT INCLUDE IF RUNNING ON SUN OS OR ON A VERSION
127  * OF UNIX BASED ON NFSSRC.  These systems will already have the structures
128  * defined by <rpc/netdb.h> included in <netdb.h>.
129  */
130 /* routines for parsing /etc/rpc */
131 #include <rpc/netdb.h>          /* structures and routines to parse /etc/rpc */
132
133 #endif /* ndef __RPC_HEADER__ */