home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcp30tkt.zip / PGMG1.ZIP / INCLUDE / RPC / RPC.H < prev    next >
Text File  |  1995-12-04  |  4KB  |  84 lines

  1. /********************************************************copyrite.xmc***/
  2. /*                                                                     */
  3. /*   Licensed Materials - Property of IBM                              */
  4. /*                                                                     */
  5. /*   This module is "Restricted Materials of IBM":                     */
  6. /*      Program Number:   5798RXW                                      */
  7. /*      Program Name:     IBM TCP/IP Version 1.2 for OS/2              */
  8. /*   (C) Copyright IBM Corporation. 1990, 1991.                        */
  9. /*                                                                     */
  10. /*   See IBM Copyright Instructions.                                   */
  11. /*                                                                     */
  12. /********************************************************copyrite.xmc***/
  13. #ifndef __RPC_32H
  14. #define __RPC_32H
  15.  
  16. /*
  17.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  18.  * unrestricted use provided that this legend is included on all tape
  19.  * media and as a part of the software program in whole or part.  Users
  20.  * may copy or modify Sun RPC without charge, but are not authorized
  21.  * to license or distribute it to anyone else except as part of a product or
  22.  * program developed by the user.
  23.  *
  24.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  25.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  26.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  27.  *
  28.  * Sun RPC is provided with no support and without any obligation on the
  29.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  30.  * modification or enhancement.
  31.  *
  32.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  33.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  34.  * OR ANY PART THEREOF.
  35.  *
  36.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  37.  * or profits or other special, indirect and consequential damages, even if
  38.  * Sun has been advised of the possibility of such damages.
  39.  *
  40.  * Sun Microsystems, Inc.
  41.  * 2550 Garcia Avenue
  42.  * Mountain View, California  94043
  43.  */
  44. /*      @(#)rpc.h 1.1 86/02/03 SMI      */
  45.  
  46. /*
  47.  * rpc.h, Just includes the billions of rpc header files necessary to
  48.  * do remote procedure calling.
  49.  *
  50.  * Copyright (C) 1984, Sun Microsystems, Inc.
  51.  */
  52.  
  53. #pragma pack(4)
  54.  
  55. #include <rpc/rpctypes.h>          /* some typedefs */
  56. #include <netinet/in.h>
  57.  
  58. /* external data representation interfaces */
  59. #include <rpc/xdr.h>            /* generic (de)serializer */
  60.  
  61. /* Client side only authentication */
  62. #include <rpc/auth.h>           /* generic authenticator (client side) */
  63.  
  64. /* Client side (mostly) remote procedure call */
  65. #include <rpc/clnt.h>           /* generic rpc stuff */
  66.  
  67. /* semi-private protocol headers */
  68. #include <rpc/rpc_msg.h>        /* protocol for rpc messages */
  69. #include <rpc/auth_uni.h>      /* protocol for unix style cred */
  70.  
  71. /* Server side only remote procedure callee */
  72. #include <rpc/svc.h>            /* service manager and multiplexer */
  73. #include <rpc/svc_auth.h>       /* service side authenticator */
  74.  
  75. #include <rpc/rpcnetdb.h>       /* routines to read /etc/rpc file */
  76. #include <rpc/pmap_cln.h>       /**** OJAN 11/17/95  *****/
  77.  
  78. extern int registerrpc(u_long, u_long, u_long, char *(*procname) (), xdrproc_t, xdrproc_t);   /**** OJAN 11/16/95  ****/
  79.  
  80.  
  81. #pragma pack()
  82.  
  83. #endif /* __RPC_32H  */
  84.