From 68ee9bcaedfeb76a7eaf8bad7833ffbad373e9c1 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 8 Feb 2016 15:13:14 -0600 Subject: [PATCH] Refresh modules + plus minor clean-up from previous commits --- Documentation | 2 +- TODO | 8 +------- configs | 2 +- libc/net/lib_inetntoa.c | 2 +- net/netdev/netdev_ioctl.c | 7 ------- 5 files changed, 4 insertions(+), 17 deletions(-) diff --git a/Documentation b/Documentation index 5acd332e57..f1517cb0bb 160000 --- a/Documentation +++ b/Documentation @@ -1 +1 @@ -Subproject commit 5acd332e570f2454d98bce9dfa873770a3856dd0 +Subproject commit f1517cb0bb3fe10986030cd57b5bed1cf48e90b0 diff --git a/TODO b/TODO index 61c307700c..31bd58e955 100644 --- a/TODO +++ b/TODO @@ -31,7 +31,7 @@ nuttx/ apps/ (3) Network Utilities (apps/netutils/) - (3) NuttShell (NSH) (apps/nshlib) + (2) NuttShell (NSH) (apps/nshlib) (1) System libraries apps/system (apps/system) (4) Other Applications & Tests (apps/examples/) @@ -1758,12 +1758,6 @@ o NuttShell (NSH) (apps/nshlib) Status: Open Priority: Low - Title: ARP COMMAND - Description: Add an ARP command so that we can see and modify the contents of - the ARP table. - Status: Open - Priority: Low (enhancement) - Title: ARPPING COMMAND Description: Add an arping command Status: Open diff --git a/configs b/configs index e18941d4d5..df66c8b70c 160000 --- a/configs +++ b/configs @@ -1 +1 @@ -Subproject commit e18941d4d5e4de5b3ce581911a4296a8206830a3 +Subproject commit df66c8b70c69689c9adf46c5d8188c9a5613e2e5 diff --git a/libc/net/lib_inetntoa.c b/libc/net/lib_inetntoa.c index 4bd49db921..a25364ce2d 100644 --- a/libc/net/lib_inetntoa.c +++ b/libc/net/lib_inetntoa.c @@ -54,7 +54,7 @@ * Name: inet_ntoa * * Description: - * The inet_ntoa() function converts the Internet host address in given in + * The inet_ntoa() function converts the Internet host address given in * network byte order to a string in standard numbers-and-dots notation. * The string is returned in a statically allocated buffer, which subsequent * calls will overwrite. diff --git a/net/netdev/netdev_ioctl.c b/net/netdev/netdev_ioctl.c index 077cfa7b13..d54c3f6b05 100644 --- a/net/netdev/netdev_ioctl.c +++ b/net/netdev/netdev_ioctl.c @@ -676,13 +676,6 @@ static int netdev_ifrioctl(FAR struct socket *psock, int cmd, } break; -#ifdef CONFIG_NET_ARPIOCTLS - case SIOCSARP: /* Set a ARP mapping */ - case SIOCDARP: /* Delete an ARP mapping */ - case SIOCGARP: /* Get an ARP mapping */ -# error "IOCTL Commands not implemented" -#endif - #ifdef CONFIG_NETDEV_PHY_IOCTL #ifdef CONFIG_ARCH_PHY_INTERRUPT case SIOCMIINOTIFY: /* Set up for PHY event notifications */