Sync contents of struct nfsd_svrargs

This commit is contained in:
Kris Kennaway 2000-01-09 01:54:35 +00:00
parent dca60efcc9
commit bd2d54f0cb
1 changed files with 2 additions and 2 deletions

View File

@ -140,14 +140,14 @@ and a pointer to a
struct nfsd_srvargs { struct nfsd_srvargs {
struct nfsd *nsd_nfsd; /* Pointer to in kernel nfsd struct */ struct nfsd *nsd_nfsd; /* Pointer to in kernel nfsd struct */
uid_t nsd_uid; /* Effective uid mapped to cred */ uid_t nsd_uid; /* Effective uid mapped to cred */
u_long nsd_haddr; /* Ip address of client */ u_int32_t nsd_haddr; /* Ip address of client */
struct ucred nsd_cr; /* Cred. uid maps to */ struct ucred nsd_cr; /* Cred. uid maps to */
int nsd_authlen; /* Length of auth string (ret) */ int nsd_authlen; /* Length of auth string (ret) */
u_char *nsd_authstr; /* Auth string (ret) */ u_char *nsd_authstr; /* Auth string (ret) */
int nsd_verflen; /* and the verfier */ int nsd_verflen; /* and the verfier */
u_char *nsd_verfstr; u_char *nsd_verfstr;
struct timeval nsd_timestamp; /* timestamp from verifier */ struct timeval nsd_timestamp; /* timestamp from verifier */
u_long nsd_ttl; /* credential ttl (sec) */ u_int32_t nsd_ttl; /* credential ttl (sec) */
NFSKERBKEY_T nsd_key; /* Session key */ NFSKERBKEY_T nsd_key; /* Session key */
}; };
.Ed .Ed