Minor change to NFS interface

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4840 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-06-14 13:08:48 +00:00
parent 906c5e8279
commit c8e10f99f0
4 changed files with 53 additions and 68 deletions
+11 -13
View File
@@ -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) */
};
/****************************************************************************