summaryrefslogtreecommitdiff
path: root/apps/ChangeLog.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-17 23:02:58 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-17 23:02:58 +0000
commit68e8befbc94818cc60bbfd4fb3f8f556e76ecba2 (patch)
tree73190e5163186ab1028a6b26ef5b3794bc6910ba /apps/ChangeLog.txt
parent14f445102e0b861845ccd53a5d6777a25bc75c7e (diff)
downloadnuttx-68e8befbc94818cc60bbfd4fb3f8f556e76ecba2.tar.gz
nuttx-68e8befbc94818cc60bbfd4fb3f8f556e76ecba2.tar.bz2
nuttx-68e8befbc94818cc60bbfd4fb3f8f556e76ecba2.zip
Fix ENC28J60 Tx transmit (still a receive problem); Add HTTP 408 logic from Kate
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5158 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/ChangeLog.txt')
-rw-r--r--apps/ChangeLog.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 070a78430..e09809915 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -332,6 +332,7 @@
* apps/netutils/uip_listenon.c: Logic in uip_server.c that creates
the listening socket was moved to this new file to support re-use.
Contributed by Kate.
- * apps/netutils/webserver/httpd.c: The option CONFIG_NETUTILS_HTTPD_SINGLETHREAD
- can now be used to limit the server to a single thread. From Kate.
-
+ * apps/netutils/webserver/httpd.c: The option CONFIG_NETUTILS_HTTPD_SINGLECONNECT
+ can now be used to limit the server to a single thread. Option
+ CONFIG_NETUTILS_HTTPD_TIMEOUT can be used to generate HTTP 408 errors.
+ Both from Kate.