home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / lan / soss.arj / RPC / RPC.H < prev    next >
C/C++ Source or Header  |  1991-02-22  |  1KB  |  35 lines

  1. /*    SccsId [] = "@(#)rpc.h.u    4.1\t2/5/87"    */
  2. /*    @(#)rpc.h 1.1 86/09/24 SMI    */
  3.  
  4. /*
  5.  * rpc.h, Just includes the billions of rpc header files necessary to 
  6.  * do remote procedure calling.
  7.  *
  8.  * Copyright (C) 1984, Sun Microsystems, Inc.
  9.  */
  10. #ifndef __RPC_HEADER__
  11. #define __RPC_HEADER__
  12.  
  13. #include <rpc/types.h>        /* some typedefs */
  14. #include "in.h"
  15.  
  16. /* external data representation interfaces */
  17. #include <rpc/xdr.h>        /* generic (de)serializer */
  18.  
  19. /* Client side only authentication */
  20. #include <rpc/auth.h>        /* generic authenticator (client side) */
  21.  
  22. /* Client side (mostly) remote procedure call */
  23. #include <rpc/clnt.h>        /* generic rpc stuff */
  24.  
  25. /* semi-private protocol headers */
  26. #include <rpc/rpc_msg.h>    /* protocol for rpc messages */
  27. #include <rpc/a_unix.h>        /* protocol for unix style cred */
  28.  
  29. /* Server side only */
  30. /* server side code ported by See-Mong Tan, 6/11/88 */
  31. #include <rpc/svc.h>        /* service manager and multiplexer */
  32. #include <rpc/svc_auth.h>    /* service side authenticator */
  33.  
  34. #endif /* !__RPC_HEADER__ */
  35.