home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcp30tkt.zip / PGMG1.ZIP / INCLUDE / RPC / AUTH_UNI.H next >
Text File  |  1995-12-04  |  4KB  |  92 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 __AUTH_UNI_32H
  14. #define __AUTH_UNI_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. /*      @(#)auth_unix.h 1.1 86/02/03 SMI      */
  45.  
  46. /*
  47.  * auth_unix.h, Protocol for UNIX style authentication parameters for RPC
  48.  *
  49.  * Copyright (C) 1984, Sun Microsystems, Inc.
  50.  */
  51.  
  52. /*
  53.  * The system is very weak.  The client uses no encryption for  it
  54.  * credentials and only sends null verifiers.  The server sends backs
  55.  * null verifiers or optionally a verifier that suggests a new short hand
  56.  * for the credentials.
  57.  */
  58.  
  59. /* The machine name is part of a credential; it may not exceed 255 bytes */
  60. #define MAX_MACHINE_NAME 255
  61.  
  62. /* gids compose part of a credential; there may not be more than 10 of them */
  63. //#define NGRPS 8
  64. #define NGRPS 30
  65.  
  66. /*
  67.  * Unix style credentials.
  68.  */
  69. struct authunix_parms {
  70.         u_long   aup_time;
  71.         char    *aup_machname;
  72.         int      aup_uid;
  73.         int      aup_gid;
  74.         u_int    aup_len;
  75.         int     *aup_gids;
  76. };
  77. #ifdef XDRNOPROTO
  78. extern bool_t xdr_authunix_parms();
  79. #else
  80. extern bool_t xdr_authunix_parms(XDR *, struct authunix_parms *);
  81. #endif
  82. /*
  83.  * If a response verifier has flavor AUTH_SHORT,
  84.  * then the body of the response verifier encapsulates the following structure;
  85.  * again it is serialized in the obvious fashion.
  86.  */
  87. struct short_hand_verf {
  88.         struct opaque_auth new_cred;
  89. };
  90.  
  91. #endif /* __AUTH_UNI_32H */
  92.