summaryrefslogtreecommitdiff
path: root/apps/netutils/ftpc
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-04 19:13:08 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-04 19:13:08 -0600
commit3285efc508064d44b60120ffe903c13184482869 (patch)
tree3844c1fb247d2e5d8de17b4f390b78ed19e26c65 /apps/netutils/ftpc
parent9359459245f11e94dee418e424e44f598bc04039 (diff)
downloadnuttx-3285efc508064d44b60120ffe903c13184482869.tar.gz
nuttx-3285efc508064d44b60120ffe903c13184482869.tar.bz2
nuttx-3285efc508064d44b60120ffe903c13184482869.zip
NET: emoved all includes of uip.h; added includes of ip.h wherever needed. Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed.
Diffstat (limited to 'apps/netutils/ftpc')
-rw-r--r--apps/netutils/ftpc/ftpc_connect.c2
-rw-r--r--apps/netutils/ftpc/ftpc_internal.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/netutils/ftpc/ftpc_connect.c b/apps/netutils/ftpc/ftpc_connect.c
index 4fa8178a7..74598f931 100644
--- a/apps/netutils/ftpc/ftpc_connect.c
+++ b/apps/netutils/ftpc/ftpc_connect.c
@@ -45,6 +45,8 @@
#include <errno.h>
#include <debug.h>
+#include <arpa/inet.h>
+
#include <apps/ftpc.h>
#include "ftpc_internal.h"
diff --git a/apps/netutils/ftpc/ftpc_internal.h b/apps/netutils/ftpc/ftpc_internal.h
index a2a6fffce..5bb683f50 100644
--- a/apps/netutils/ftpc/ftpc_internal.h
+++ b/apps/netutils/ftpc/ftpc_internal.h
@@ -51,6 +51,8 @@
#include <time.h>
#include <wdog.h>
+#include <netinet/in.h>
+
#include <apps/ftpc.h>
/****************************************************************************