summaryrefslogtreecommitdiff
path: root/nuttx/net/netdev_ioctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/netdev_ioctl.c')
-rw-r--r--nuttx/net/netdev_ioctl.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/nuttx/net/netdev_ioctl.c b/nuttx/net/netdev_ioctl.c
index 950d4e21d..f690b335e 100644
--- a/nuttx/net/netdev_ioctl.c
+++ b/nuttx/net/netdev_ioctl.c
@@ -253,6 +253,13 @@ int netdev_ioctl(int sockfd, int cmd, struct ifreq *req)
err = ENOSYS;
goto errout;
+#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
+
default:
err = EINVAL;
goto errout;