summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-04 15:40:49 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-04 15:40:49 -0600
commiteb46f67f7957f8a27d7c09836ada9cf8264d0ad5 (patch)
treed897ddf039dfec728865da57ebf7ead5a8425ba8 /apps
parent7ad1aa2d17297231ff92fa8933eb75feaae3570d (diff)
downloadnuttx-eb46f67f7957f8a27d7c09836ada9cf8264d0ad5.tar.gz
nuttx-eb46f67f7957f8a27d7c09836ada9cf8264d0ad5.tar.bz2
nuttx-eb46f67f7957f8a27d7c09836ada9cf8264d0ad5.zip
NET: More renaming
Diffstat (limited to 'apps')
-rw-r--r--apps/include/netutils/httpd.h2
-rw-r--r--apps/netutils/tftpc/tftpc_internal.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/include/netutils/httpd.h b/apps/include/netutils/httpd.h
index d14b6bf4d..5da5ff762 100644
--- a/apps/include/netutils/httpd.h
+++ b/apps/include/netutils/httpd.h
@@ -80,7 +80,7 @@
* buffer be sufficiently large to contain the entire GET request.
*/
-#define HTTPD_IOBUFFER_SIZE (3*UIP_TCP_MSS)
+#define HTTPD_IOBUFFER_SIZE (3*TCP_MSS)
/* This is the maximum size of a file path */
diff --git a/apps/netutils/tftpc/tftpc_internal.h b/apps/netutils/tftpc/tftpc_internal.h
index 1a9601c63..436090193 100644
--- a/apps/netutils/tftpc/tftpc_internal.h
+++ b/apps/netutils/tftpc/tftpc_internal.h
@@ -91,8 +91,8 @@
#define TFTP_DATAHEADERSIZE 4
#define TFTP_MAXPACKETSIZE (TFTP_DATAHEADERSIZE+512)
-#if UIP_UDP_MSS < TFTP_MAXPACKETSIZE
-# define TFTP_PACKETSIZE UIP_UDP_MSS
+#if UDP_MSS < TFTP_MAXPACKETSIZE
+# define TFTP_PACKETSIZE UDP_MSS
# ifdef CONFIG_CPP_HAVE_WARNING
# warning "uIP MSS is too small for TFTP"
# endif