NFS updates
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4647 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
4d08da0348
commit
e90d79595d
@ -55,7 +55,7 @@
|
|||||||
# include <nuttx/fs/mkfatfs.h>
|
# include <nuttx/fs/mkfatfs.h>
|
||||||
# endif
|
# endif
|
||||||
# ifdef CONFIG_NFS
|
# ifdef CONFIG_NFS
|
||||||
# include <netinet/in.h>
|
# include <sys/socket.h>
|
||||||
# include <nuttx/fs/nfs.h>
|
# include <nuttx/fs/nfs.h>
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
@ -1230,8 +1230,8 @@ int cmd_nfsmount(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
#else
|
#else
|
||||||
struct in_addr inaddr;
|
struct in_addr inaddr;
|
||||||
#endif
|
#endif
|
||||||
|
bool tcp = false;
|
||||||
int ret;
|
int ret;
|
||||||
int tcp = 0;
|
|
||||||
|
|
||||||
/* Get the NFS mount options */
|
/* Get the NFS mount options */
|
||||||
|
|
||||||
@ -1267,15 +1267,11 @@ int cmd_nfsmount(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
|
|
||||||
if (protocol)
|
if (protocol)
|
||||||
{
|
{
|
||||||
if (!strncmp(protocol, "tcp", 3))
|
if (strncmp(protocol, "tcp", 3) == 0)
|
||||||
{
|
{
|
||||||
tcp = 1;
|
tcp = true;
|
||||||
}
|
}
|
||||||
else if (!strncmp(protocol, "udp", 3))
|
else if (!strncmp(protocol, "udp", 3) != 0)
|
||||||
{
|
|
||||||
tcp = 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
nsh_output(vtbl, g_fmtarginvalid, argv[0]);
|
nsh_output(vtbl, g_fmtarginvalid, argv[0]);
|
||||||
badarg = true;
|
badarg = true;
|
||||||
@ -1344,7 +1340,7 @@ int cmd_nfsmount(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
|
|||||||
memset(&data, 0, sizeof(data));
|
memset(&data, 0, sizeof(data));
|
||||||
data.version = 3;
|
data.version = 3;
|
||||||
data.proto = (tcp) ? 6 : 17;
|
data.proto = (tcp) ? 6 : 17;
|
||||||
dato.sotype = (tcp) ? 0 : 1;
|
data.sotype = (tcp) ? 0 : 1;
|
||||||
sin->sin_family = 2;
|
sin->sin_family = 2;
|
||||||
sin->sin_port = htons(2049);
|
sin->sin_port = htons(2049);
|
||||||
sin->sin_addr = inaddr;
|
sin->sin_addr = inaddr;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user