summaryrefslogtreecommitdiff
path: root/apps/netutils/webserver/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-07-11 12:30:23 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-07-11 12:30:23 -0600
commit8afce11c793cef769c327f81616f417b9d758569 (patch)
treeb55b1318c106ac012c84920420923b1d1a15d7a0 /apps/netutils/webserver/Kconfig
parent8e99f6bfed3e066cec389ea80efd83ea86f7d067 (diff)
downloadnuttx-8afce11c793cef769c327f81616f417b9d758569.tar.gz
nuttx-8afce11c793cef769c327f81616f417b9d758569.tar.bz2
nuttx-8afce11c793cef769c327f81616f417b9d758569.zip
Fix netutils configuration issues: CONFIG_NETUTILS_HTTPD_SENDFILE was missing from Kconfig; CONFIG_NET_HAVE_SOLINGER should be CONFIG_NET_SOLINGER; Type of CONFIG_NET_HTTPD_MAXPATH was wrong in Kconfig file. From Max
Diffstat (limited to 'apps/netutils/webserver/Kconfig')
-rw-r--r--apps/netutils/webserver/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/netutils/webserver/Kconfig b/apps/netutils/webserver/Kconfig
index 59dcc5f30..f24a03595 100644
--- a/apps/netutils/webserver/Kconfig
+++ b/apps/netutils/webserver/Kconfig
@@ -34,7 +34,7 @@ config NETUTILS_HTTPD_SCRIPT_DISABLE
This option, if selected, will elide the %! scripting
config NETUTILS_HTTPD_MAXPATH
- bool "Maximum size of a path"
+ int "Maximum size of a path"
default 64
---help---
This is the maximum size of a PATH used in the web server. This setting
@@ -112,7 +112,7 @@ config NETUTILS_HTTPD_MMAP
approach. NOTE, however, that since files are copied into memory,
this limits solution to small files that will fit into available RAM.
-config NETUTILS_HTTPD_MMAP
+config NETUTILS_HTTPD_SENDFILE
bool "sendfile()"
select NETUTILS_HTTPD_SCRIPT_DISABLE
---help---