mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-05 16:30:34 +08:00
e5581cb0bc
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5089 7fd9a85b-ad96-42d3-883c-3090e2eb8679
35 lines
843 B
Plaintext
35 lines
843 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see misc/tools/kconfig-language.txt.
|
|
#
|
|
|
|
config NETUTILS_WEBSERVER
|
|
bool "uIP web server"
|
|
default n
|
|
---help---
|
|
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
|
|
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
|