summaryrefslogtreecommitdiffstats
path: root/nuttx/include/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-06-07 01:03:34 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-06-07 01:03:34 +0000
commitd1be2fec48f3ef4c66491a7075c67c92b4e61f94 (patch)
tree4cf5eb456cc5750cc98339e44ebc03cfa8951208 /nuttx/include/nuttx
parente849e8f0313b56666bbd3dfce9e2d34ebcfd4f0d (diff)
NFS update
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4809 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include/nuttx')
-rw-r--r--nuttx/include/nuttx/fs/nfs.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/nuttx/include/nuttx/fs/nfs.h b/nuttx/include/nuttx/fs/nfs.h
index fb78151ab0..7f31da5a96 100644
--- a/nuttx/include/nuttx/fs/nfs.h
+++ b/nuttx/include/nuttx/fs/nfs.h
@@ -63,26 +63,26 @@
struct nfs_args
{
- uint8_t version; /* args structure version number */
- struct sockaddr addr; /* file server address */
- uint8_t addrlen; /* length of address */
+ uint8_t version; /* Args structure version number */
+ uint8_t addrlen; /* Length of address */
uint8_t sotype; /* Socket type */
uint8_t proto; /* and Protocol */
- int flags; /* flags */
- int wsize; /* write size in bytes */
- int rsize; /* read size in bytes */
+ int flags; /* Flags */
+ int wsize; /* Write size in bytes */
+ int rsize; /* Read size in bytes */
int readdirsize; /* readdir size in bytes */
- int timeo; /* initial timeout in .1 secs */
- int retrans; /* times to retry send */
+ int timeo; /* Initial timeout in .1 secs */
+ int retrans; /* Times to retry send */
//int maxgrouplist; /* Max. size of group list */
//int readahead; /* # of blocks to readahead */
//int leaseterm; /* Term (sec) of lease */
//int deadthresh; /* Retrans threshold */
- char *path; /* server's path of the directory being mount */
- int acregmin; /* cache attrs for reg files min time */
- int acregmax; /* cache attrs for reg files max time */
- int acdirmin; /* cache attrs for dirs min time */
- int acdirmax; /* cache attrs for dirs max time */
+ char *path; /* Server's path of the directory being mount */
+ int acregmin; /* Cache attrs for reg files min time */
+ int acregmax; /* Cache attrs for reg files max time */
+ int acdirmin; /* Cache attrs for dirs min time */
+ int acdirmax; /* Cache attrs for dirs max time */
+ struct sockaddr addr; /* File server address (requires 32-bit alignment) */
};
/****************************************************************************