summaryrefslogtreecommitdiff
path: root/apps/netutils/webserver/Kconfig
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-04 16:59:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-04 16:59:24 +0000
commit7592905c78f257058a006691f30227eaf027e5b3 (patch)
treed0e4b868b325893a025878c2b6b10762ca96b60e /apps/netutils/webserver/Kconfig
parent81fd1693a08fb50ca1ef42c9569397612d7ff098 (diff)
downloadnuttx-7592905c78f257058a006691f30227eaf027e5b3.tar.gz
nuttx-7592905c78f257058a006691f30227eaf027e5b3.tar.bz2
nuttx-7592905c78f257058a006691f30227eaf027e5b3.zip
Enhancements to the uIP web server from Kate
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5088 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/netutils/webserver/Kconfig')
-rw-r--r--apps/netutils/webserver/Kconfig23
1 files changed, 22 insertions, 1 deletions
diff --git a/apps/netutils/webserver/Kconfig b/apps/netutils/webserver/Kconfig
index 2fb80fe95..b1a98f09b 100644
--- a/apps/netutils/webserver/Kconfig
+++ b/apps/netutils/webserver/Kconfig
@@ -7,7 +7,28 @@ config NETUTILS_WEBSERVER
bool "uIP web server"
default n
---help---
- Enable support for the uIP web server.
+ Enable support for the uIP web server. This tiny web server was
+ from uIP 1.0, but has undergone many changes. It is, however,
+ still referred to as the "uIP" web server.
if NETUTILS_WEBSERVER
+
+config NETUTILS_HTTPD_SCRIPT_DISABLE
+ bool "Disable %! scripting"
+ default n
+ ---help---
+ This option, if selected, will elide the %! scripting
+
+config NETUTILS_HTTPD_SERVERHEADER_DISABLE, which elides the Server: header
+ bool "Disabled the SERVER header"
+ default n
+ ---help---
+ This option, if selected, will elide the Server: header
+
+config NETUTILS_HTTPD_MMAP
+ bool "File mmap-ing"
+ default n
+ ---help---
+ Replaces standard uIP server file open operations with mmap-ing operations.
+
endif