diff options
| author | Eric Andersen <andersen@codepoet.org> | 2000-07-06 19:22:49 +0000 | 
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2000-07-06 19:22:49 +0000 | 
| commit | ffb96c090015f49059d146deefbbd7e1f6baa642 (patch) | |
| tree | 53229e8793e289f18a7453b144850b6583078c32 /include/rpc/auth_unix.h | |
| parent | afb85e9d6ca1de8f1ecb267e8c30b88ba4382820 (diff) | |
| download | uClibc-alpine-ffb96c090015f49059d146deefbbd7e1f6baa642.tar.bz2 uClibc-alpine-ffb96c090015f49059d146deefbbd7e1f6baa642.tar.xz  | |
Some more major updates to further superate ucLibc from the kernel
headers (the way it has been done in GNU libc).
 -Erik
Diffstat (limited to 'include/rpc/auth_unix.h')
| -rw-r--r-- | include/rpc/auth_unix.h | 56 | 
1 files changed, 37 insertions, 19 deletions
diff --git a/include/rpc/auth_unix.h b/include/rpc/auth_unix.h index 705741e13..ed3b9322c 100644 --- a/include/rpc/auth_unix.h +++ b/include/rpc/auth_unix.h @@ -6,23 +6,23 @@   * may copy or modify Sun RPC without charge, but are not authorized   * to license or distribute it to anyone else except as part of a product or   * program developed by the user. - *  + *   * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE   * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR   * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. - *  + *   * Sun RPC is provided with no support and without any obligation on the   * part of Sun Microsystems, Inc. to assist in its use, correction,   * modification or enhancement. - *  + *   * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE   * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC   * OR ANY PART THEREOF. - *  + *   * In no event will Sun Microsystems, Inc. be liable for any lost revenue   * or profits or other special, indirect and consequential damages, even if   * Sun has been advised of the possibility of such damages. - *  + *   * Sun Microsystems, Inc.   * 2550 Garcia Avenue   * Mountain View, California  94043 @@ -42,6 +42,17 @@   * for the credentials.   */ +#ifndef _RPC_AUTH_UNIX_H +#define _RPC_AUTH_UNIX_H	1 + +#include <features.h> +#include <sys/types.h> +#include <rpc/types.h> +#include <rpc/auth.h> +#include <rpc/xdr.h> + +__BEGIN_DECLS +  /* The machine name is part of a credential; it may not exceed 255 bytes */  #define MAX_MACHINE_NAME 255 @@ -51,22 +62,29 @@  /*   * Unix style credentials.   */ -struct authunix_parms { -	u_long	 aup_time; -	char	*aup_machname; -	int	 aup_uid; -	int	 aup_gid; -	u_int	 aup_len; -	int	*aup_gids; -}; +struct authunix_parms +  { +    u_long aup_time; +    char *aup_machname; +    __uid_t aup_uid; +    __gid_t aup_gid; +    u_int aup_len; +    __gid_t *aup_gids; +  }; -extern bool_t xdr_authunix_parms(); +extern bool_t xdr_authunix_parms __P ((XDR *__xdrs, +				       struct authunix_parms *__p)); -/*  - * If a response verifier has flavor AUTH_SHORT,  +/* + * 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; -}; +struct short_hand_verf +  { +    struct opaque_auth new_cred; +  }; + +__END_DECLS + +#endif /* rpc/auth_unix.h */  | 
