summaryrefslogtreecommitdiffstats
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-06-14 13:08:48 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-06-14 13:08:48 +0000
commitf54b75a2cfb46de8509eda58c1592c98037172f6 (patch)
tree71349ba6a475002c918c95bc25f01ed538f43ae4 /nuttx/include
parent57aa49a601591d1ab4add8af4436e914cdb42260 (diff)
Minor change to NFS interface
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4840 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/nuttx/fs/nfs.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/nuttx/include/nuttx/fs/nfs.h b/nuttx/include/nuttx/fs/nfs.h
index 3ce62dfc1c..3dbcc6dc8e 100644
--- a/nuttx/include/nuttx/fs/nfs.h
+++ b/nuttx/include/nuttx/fs/nfs.h
@@ -53,8 +53,7 @@
* Pre-processor Definitions
****************************************************************************/
-#define NFSMNT_NFSV3 0x00000200 /* Use NFS Version 3 protocol */
-#define NFS_ARGSVERSION 3 /* change when nfs_args changes */
+#define NFS_NFSV3 0x00000200 /* Use NFS Version 3 protocol */
#define NFS_PMAPPORT 111
/****************************************************************************
@@ -63,17 +62,16 @@
struct nfs_args
{
- uint8_t version; /* Args structure version number */
- uint8_t addrlen; /* Length of address */
- uint8_t sotype; /* Socket type */
- 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 */
- char *path; /* Server's path of the directory being mount */
- struct sockaddr_storage addr; /* File server address (requires 32-bit alignment) */
+ uint8_t addrlen; /* Length of address */
+ uint8_t sotype; /* Socket type */
+ uint32_t 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 */
+ char *path; /* Server's path of the directory being mount */
+ struct sockaddr_storage addr; /* File server address (requires 32-bit alignment) */
};
/****************************************************************************