NET: More renaming

This commit is contained in:
Gregory Nutt 2014-07-04 15:40:49 -06:00
parent d7c38a7c55
commit fcffe2e824
2 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@
* buffer be sufficiently large to contain the entire GET request. * 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 */ /* This is the maximum size of a file path */

View File

@ -91,8 +91,8 @@
#define TFTP_DATAHEADERSIZE 4 #define TFTP_DATAHEADERSIZE 4
#define TFTP_MAXPACKETSIZE (TFTP_DATAHEADERSIZE+512) #define TFTP_MAXPACKETSIZE (TFTP_DATAHEADERSIZE+512)
#if UIP_UDP_MSS < TFTP_MAXPACKETSIZE #if UDP_MSS < TFTP_MAXPACKETSIZE
# define TFTP_PACKETSIZE UIP_UDP_MSS # define TFTP_PACKETSIZE UDP_MSS
# ifdef CONFIG_CPP_HAVE_WARNING # ifdef CONFIG_CPP_HAVE_WARNING
# warning "uIP MSS is too small for TFTP" # warning "uIP MSS is too small for TFTP"
# endif # endif