aboutsummaryrefslogtreecommitdiff
path: root/apps/include
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
commit294e1a2df929d1d39369d450236b099ea0a6d16d (patch)
treebca8ed262f966b491eee096aa19fb4b456378f82 /apps/include
parentc3c602f93e02c2ab0b2e87c828c2440a7dfb26af (diff)
downloadpx4-firmware-294e1a2df929d1d39369d450236b099ea0a6d16d.tar.gz
px4-firmware-294e1a2df929d1d39369d450236b099ea0a6d16d.tar.bz2
px4-firmware-294e1a2df929d1d39369d450236b099ea0a6d16d.zip
Fix ording of bytes in ENC28J60 MAC address; Web server refactoring from Kate
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5159 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/include')
-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() */