aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsserver/nfs.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2002-07-24 22:27:35 +0000
committerPeter Wemm <peter@FreeBSD.org>2002-07-24 22:27:35 +0000
commit28cc58165dcda4e33dd2478336bcdf74d9f8d276 (patch)
treeef692d384979862767ce0a97982ba968672abccb /sys/nfsserver/nfs.h
parent317aee9760ff5c17ee28fa8839b20e7caca24c6d (diff)
downloadsrc-28cc58165dcda4e33dd2478336bcdf74d9f8d276.tar.gz
src-28cc58165dcda4e33dd2478336bcdf74d9f8d276.zip
Fully exterminate nfsd_srvargs and nfsd_cargs. They were either unused
or giant NOP's. There was a credential in srvargs that was giving rwatson some heartburn. :-)
Notes
Notes: svn path=/head/; revision=100641
Diffstat (limited to 'sys/nfsserver/nfs.h')
-rw-r--r--sys/nfsserver/nfs.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h
index cbdb54fd04b8..1bbc1f4fb01f 100644
--- a/sys/nfsserver/nfs.h
+++ b/sys/nfsserver/nfs.h
@@ -99,29 +99,6 @@ struct nfsd_args {
int namelen; /* Length of name */
};
-struct nfsd_srvargs {
- struct nfsd *nsd_nfsd; /* Pointer to in kernel nfsd struct */
- uid_t nsd_uid; /* Effective uid mapped to cred */
- u_int32_t nsd_haddr; /* Ip address of client */
- struct xucred nsd_cr; /* Cred. uid maps to */
- u_int nsd_authlen; /* Length of auth string (ret) */
- u_char *nsd_authstr; /* Auth string (ret) */
- u_int nsd_verflen; /* and the verfier */
- u_char *nsd_verfstr;
- struct timeval nsd_timestamp; /* timestamp from verifier */
- u_int32_t nsd_ttl; /* credential ttl (sec) */
-};
-
-struct nfsd_cargs {
- char *ncd_dirp; /* Mount dir path */
- uid_t ncd_authuid; /* Effective uid */
- int ncd_authtype; /* Type of authenticator */
- u_int ncd_authlen; /* Length of authenticator string */
- u_char *ncd_authstr; /* Authenticator string */
- u_int ncd_verflen; /* and the verifier */
- u_char *ncd_verfstr;
-};
-
/*
* XXX to allow amd to include nfs.h without nfsproto.h
*/