123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #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
- #define MAX_MACHINE_NAME 255
- #define NGRPS 16
- 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 (XDR *__xdrs, struct authunix_parms *__p)
- __THROW;
- struct short_hand_verf
- {
- struct opaque_auth new_cred;
- };
- __END_DECLS
- #endif
|