summaryrefslogtreecommitdiff
path: root/apps/include/netutils/httpd.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-18 12:34:43 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-18 12:34:43 +0000
commit7ba198934e41f5283467203549a14bbfdc2e0758 (patch)
treebca8ed262f966b491eee096aa19fb4b456378f82 /apps/include/netutils/httpd.h
parent68e8befbc94818cc60bbfd4fb3f8f556e76ecba2 (diff)
downloadnuttx-7ba198934e41f5283467203549a14bbfdc2e0758.tar.gz
nuttx-7ba198934e41f5283467203549a14bbfdc2e0758.tar.bz2
nuttx-7ba198934e41f5283467203549a14bbfdc2e0758.zip
Fix ording of bytes in ENC28J60 MAC address; Web server refactoring from Kate
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5159 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/include/netutils/httpd.h')
-rw-r--r--apps/include/netutils/httpd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/include/netutils/httpd.h b/apps/include/netutils/httpd.h
index 8ba9e2f7b..031840802 100644
--- a/apps/include/netutils/httpd.h
+++ b/apps/include/netutils/httpd.h
@@ -107,7 +107,7 @@ struct httpd_fs_file
struct httpd_state
{
- char ht_buffer[HTTPD_IOBUFFER_SIZE]; /* recv()/send() buffer */
+ char ht_buffer[HTTPD_IOBUFFER_SIZE]; /* recv() buffer */
char ht_filename[HTTPD_MAX_FILENAME]; /* filename from GET command */
struct httpd_fs_file ht_file; /* Fake file data to send */
int ht_sockfd; /* The socket descriptor from accept() */