2016-09-01 10:46:36 +08:00
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-09-01 10:46:36 +08:00
|
|
|
#
|
|
|
|
|
2017-02-22 05:02:00 +08:00
|
|
|
config HTTP
|
2017-04-25 22:58:18 +08:00
|
|
|
bool "HTTP support"
|
2017-02-22 05:02:00 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This option enables the HTTP library
|
2017-02-22 05:02:00 +08:00
|
|
|
|
2017-10-02 21:44:48 +08:00
|
|
|
if HTTP
|
|
|
|
|
2017-02-22 05:02:00 +08:00
|
|
|
config HTTP_SERVER
|
2017-04-25 22:58:18 +08:00
|
|
|
bool "HTTP server support"
|
2017-05-08 19:27:29 +08:00
|
|
|
select HTTP_PARSER
|
2017-10-02 21:44:48 +08:00
|
|
|
select HTTP_PARSER_URL
|
|
|
|
select NET_APP_SERVER
|
2017-02-22 05:02:00 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Enables HTTP server routines.
|
2017-05-08 19:27:29 +08:00
|
|
|
|
2017-10-02 21:44:48 +08:00
|
|
|
config HTTP_CLIENT
|
|
|
|
bool "HTTP client support"
|
|
|
|
select HTTP_PARSER
|
|
|
|
select HTTP_PARSER_URL
|
|
|
|
select NET_APP_CLIENT
|
2017-05-08 19:27:29 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Enables HTTP client routines.
|
2017-05-08 19:27:29 +08:00
|
|
|
|
2017-10-02 21:44:48 +08:00
|
|
|
config HTTP_HEADERS
|
2017-04-25 22:58:18 +08:00
|
|
|
int "HTTP header field max number of items"
|
2017-02-22 05:02:00 +08:00
|
|
|
depends on HTTP_SERVER
|
2017-08-21 04:15:07 +08:00
|
|
|
default 20 if WEBSOCKET
|
Kconfig: Use the first default with a satisfied condition
Up until now, Zephyr has patched Kconfig to use the last 'default' with
a satisfied condition, instead of the first one. I'm not sure why the
patch was added (it predates Kconfiglib), but I suspect it's related to
Kconfig.defconfig files.
There are at least three problems with the patch:
1. It's inconsistent with how Kconfig works in other projects, which
might confuse newcomers.
2. Due to oversights, earlier 'range' properties are still preferred,
as well as earlier 'default' properties on choices.
In addition to being inconsistent, this makes it impossible to
override 'range' properties and choice 'default' properties if the
base definition of the symbol/choice already has 'range'/'default'
properties.
I've seen errors caused by the inconsistency, and I suspect there
are more.
3. A fork of Kconfiglib that adds the patch needs to be maintained.
Get rid of the patch and go back to standard Kconfig behavior, as
follows:
1. Include the Kconfig.defconfig files first instead of last in
Kconfig.zephyr.
2. Include boards/Kconfig and arch/<arch>/Kconfig first instead of
last in arch/Kconfig.
3. Include arch/<arch>/soc/*/Kconfig first instead of last in
arch/<arch>/Kconfig.
4. Swap a few other 'source's to preserve behavior for some scattered
symbols with multiple definitions.
Swap 'source's in some no-op cases too, where it might match the
intent.
5. Reverse the defaults on symbol definitions that have more than one
default.
Skip defaults that are mutually exclusive, e.g. where each default
has an 'if <some board>' condition. They are already safe.
6. Remove the prefer-later-defaults patch from Kconfiglib.
Testing was done with a Python script that lists all Kconfig
symbols/choices with multiple defaults, along with a whitelist of fixed
symbols. The script also verifies that there are no "unreachable"
defaults hidden by defaults without conditions
As an additional test, zephyr/.config was generated before and after the
change for several samples and checked to be identical (after sorting).
This commit includes some default-related cleanups as well:
- Simplify some symbol definitions, e.g. where a default has 'if FOO'
when the symbol already has 'depends on FOO'.
- Remove some redundant 'default ""' for string symbols. This is the
implicit default.
Piggyback fixes for swapped ranges on BT_L2CAP_RX_MTU and
BT_L2CAP_TX_MTU (caused by confusing inconsistency).
Piggyback some fixes for style nits too, e.g. unindented help texts.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-07-30 16:57:47 +08:00
|
|
|
default 8
|
2017-02-22 05:02:00 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Number of HTTP header field items that an HTTP server
|
2017-08-21 04:15:07 +08:00
|
|
|
application will handle. If websocket is enabled, then the
|
|
|
|
default needs to be much bigger.
|
2017-02-22 05:02:00 +08:00
|
|
|
|
2017-10-02 21:44:48 +08:00
|
|
|
config HTTPS
|
|
|
|
bool "HTTPS support"
|
|
|
|
select NET_APP_TLS
|
2017-02-22 05:02:00 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Enables HTTPS support.
|
2017-02-22 05:02:00 +08:00
|
|
|
|
2017-10-02 21:44:48 +08:00
|
|
|
config HTTP_SERVER_CONNECTIONS
|
|
|
|
int "Max number of concurrent HTTP server connections"
|
|
|
|
default NET_APP_SERVER_NUM_CONN
|
|
|
|
depends on HTTP_SERVER
|
2017-08-16 07:01:03 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This value determines how many simultaneous HTTP connections the
|
|
|
|
HTTP server can serve. Note that only 1 HTTPS connection can be
|
|
|
|
served at a time, so set CONFIG_NET_APP_SERVER_NUM_CONN and
|
|
|
|
CONFIG_NET_TCP_BACKLOG_SIZE to 1 in that case.
|
2017-08-16 07:01:03 +08:00
|
|
|
|
2017-10-02 21:44:48 +08:00
|
|
|
config HTTP_SERVER_NUM_URLS
|
|
|
|
int "Max number of URLs that the HTTP server will handle"
|
|
|
|
default 8
|
|
|
|
depends on HTTP_SERVER
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This value determines how many URLs this HTTP server can handle.
|
2017-10-02 21:44:48 +08:00
|
|
|
|
|
|
|
config HTTP_CLIENT_NETWORK_TIMEOUT
|
|
|
|
int "Default network activity timeout in seconds"
|
|
|
|
default 20
|
|
|
|
depends on HTTP_CLIENT
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Default network activity timeout in seconds. This setting is used
|
|
|
|
for TCP connection timeout.
|
2017-10-02 21:44:48 +08:00
|
|
|
|
2018-10-05 20:14:58 +08:00
|
|
|
module = HTTP
|
|
|
|
module-dep = NET_LOG
|
|
|
|
module-str = Log level for HTTP
|
|
|
|
module-help = Enables routing engine debug messages.
|
2018-07-10 20:44:02 +08:00
|
|
|
source "subsys/net/Kconfig.template.log_config.net"
|
2017-06-05 21:39:45 +08:00
|
|
|
|
|
|
|
config NET_DEBUG_HTTP_CONN
|
|
|
|
bool "Debug HTTP connections"
|
|
|
|
depends on HTTP && NET_LOG
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
Enables HTTP connection tracking.
|
2017-10-02 21:44:48 +08:00
|
|
|
|
|
|
|
endif # HTTP
|
|
|
|
|
|
|
|
config HTTP_PARSER
|
|
|
|
bool "HTTP Parser support"
|
|
|
|
select HTTP_PARSER_URL
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This option enables the http_parser library from nodejs.
|
|
|
|
This parser requires some string-related routines commonly
|
|
|
|
provided by a libc implementation.
|
2017-10-02 21:44:48 +08:00
|
|
|
|
|
|
|
config HTTP_PARSER_URL
|
|
|
|
bool "HTTP Parser for URL support"
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This option enables the URI parser library based on source from nodejs.
|
|
|
|
This parser requires some string-related routines commonly
|
|
|
|
provided by a libc implementation.
|
2017-10-02 21:44:48 +08:00
|
|
|
|
|
|
|
config HTTP_PARSER_STRICT
|
|
|
|
bool "HTTP strict parsing"
|
|
|
|
depends on (HTTP_PARSER || HTTP_PARSER_URL)
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This option enables the strict parsing option
|