home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 8.ddi / usr / include / rpc / rpc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-08  |  2.0 KB  |  71 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T    */
  3. /*      All Rights Reserved      */
  4.  
  5. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */
  6. /*    UNIX System Laboratories, Inc.                         */
  7. /*    The copyright notice above does not evidence any       */
  8. /*    actual or intended publication of such source code.    */
  9.  
  10. #ident    "@(#)/usr/include/rpc/rpc.h.sl 1.1 4.0 12/08/90 49638 AT&T-USL"
  11.  
  12. /*    @(#)rpc.h 1.13 88/12/17 SMI    */
  13.  
  14. /*
  15.  *          PROPRIETARY NOTICE (Combined)
  16.  *  
  17.  *  This source code is unpublished proprietary information
  18.  *  constituting, or derived under license from AT&T's Unix(r) System V.
  19.  *  In addition, portions of such source code were derived from Berkeley
  20.  *  4.3 BSD under license from the Regents of the University of
  21.  *  California.
  22.  *  
  23.  *  
  24.  *  
  25.  *          Copyright Notice 
  26.  *  
  27.  *  Notice of copyright on this source code product does not indicate 
  28.  *  publication.
  29.  *  
  30.  *      (c) 1986,1987,1988,1989  Sun Microsystems, Inc.
  31.  *      (c) 1983,1984,1985,1986,1987,1988,1989  AT&T.
  32.  *                All rights reserved.
  33.  */
  34.  
  35. /*
  36.  * rpc.h, Just includes the billions of rpc header files necessary to 
  37.  * do remote procedure calling.
  38.  *
  39.  */
  40. #ifndef _RPC_RPC_H
  41. #define _RPC_RPC_H
  42.  
  43. #include <rpc/types.h>        /* some typedefs */
  44.  
  45. #ifndef _KERNEL
  46. #include <tiuser.h>
  47. #include <fcntl.h>
  48. #include <memory.h>
  49. #else
  50. #include <sys/tiuser.h>
  51. #include <sys/fcntl.h>
  52. #include <netinet/in.h>
  53. #include <sys/t_kuser.h>
  54. #endif
  55.  
  56. #include <rpc/xdr.h>        /* generic (de)serializer */
  57. #include <rpc/auth.h>        /* generic authenticator (client side) */
  58. #include <rpc/clnt.h>        /* generic client side rpc */
  59.  
  60. #include <rpc/rpc_msg.h>    /* protocol for rpc messages */
  61. #include <rpc/auth_sys.h>    /* protocol for unix style cred */
  62. #include <rpc/auth_des.h>    /* protocol for des style cred */
  63.  
  64. #include <rpc/svc.h>        /* service manager and multiplexer */
  65. #include <rpc/svc_auth.h>    /* service side authenticator */
  66.  
  67. #ifndef _KERNEL
  68. #include <rpc/rpcb_clnt.h>    /* rpcbind interface functions */
  69. #endif
  70. #endif /* ! _RPC_RPC_H */
  71.