home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) 1990 UNIX System Laboratories, Inc. */
- /* Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T */
- /* All Rights Reserved */
-
- /* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF */
- /* UNIX System Laboratories, Inc. */
- /* The copyright notice above does not evidence any */
- /* actual or intended publication of such source code. */
-
- #ident "@(#)/usr/include/rpc/auth_sys.h.sl 1.1 4.0 12/08/90 9485 AT&T-USL"
-
- /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- * PROPRIETARY NOTICE (Combined)
- *
- * This source code is unpublished proprietary information
- * constituting, or derived under license from AT&T's UNIX(r) System V.
- * In addition, portions of such source code were derived from Berkeley
- * 4.3 BSD under license from the Regents of the University of
- * California.
- *
- *
- *
- * Copyright Notice
- *
- * Notice of copyright on this source code product does not indicate
- * publication.
- *
- * (c) 1986,1987,1988.1989 Sun Microsystems, Inc
- * (c) 1983,1984,1985,1986,1987,1988,1989 AT&T.
- * All rights reserved.
- */
-
-
- /*
- * auth_sys.h, Protocol for UNIX style authentication parameters for RPC
- *
- */
-
- #ifndef _RPC_AUTH_SYS_H
- #define _RPC_AUTH_SYS_H
-
- /*
- * The system is very weak. The client uses no encryption for it
- * credentials and only sends null verifiers. The server sends backs
- * null verifiers or optionally a verifier that suggests a new short hand
- * for the credentials.
- */
-
- /* The machine name is part of a credential; it may not exceed 255 bytes */
- #define MAX_MACHINE_NAME 255
-
- /* gids compose part of a credential; there may not be more than 16 of them */
- #define NGRPS 16
-
- /*
- * "Unix" (sys) style credentials.
- */
- struct authsys_parms {
- u_long aup_time;
- char *aup_machname;
- uid_t aup_uid;
- gid_t aup_gid;
- u_int aup_len;
- gid_t *aup_gids;
- };
- /* For backword compatibility */
- #define authunix_parms authsys_parms
-
- extern bool_t xdr_authsys_parms();
- /* For backword compatibility. Will get obsolete */
- #define xdr_authunix_parms(xdrs, p) xdr_authsys_parms(xdrs, p)
-
- /*
- * If a response verifier has flavor AUTH_SHORT,
- * then the body of the response verifier encapsulates the following structure;
- * again it is serialized in the obvious fashion.
- */
- struct short_hand_verf {
- struct opaque_auth new_cred;
- };
-
- #endif /* !_RPC_AUTH_SYS_H */
-