zephyr/subsys/net/lib/websocket/Kconfig
Torsten Rasmussen 36f5600387 kconfig: net: experimental settings now uses select EXPERIMENTAL
With the introduction of `EXPERIMENTAL` and `WARN_EXPERIMENTAL` in
Zephyr all subsys/net and drivers/ethernet/Kconfig.e1000 settings
having `[EXPERIMENTAL]` in their prompt has has been updated to include
`select EXPERIMENTAL` so that developers can enable warnings when
experimental features are enabled.

The following settings has EXPERIMENTAL removed as they are considered
mature:
- NET_OFFLOAD
- NET_PROMISCUOUS_MODE

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
2021-10-25 10:46:48 +02:00

31 lines
703 B
Plaintext

# Copyright (c) 2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig WEBSOCKET_CLIENT
bool "Websocket client support [EXPERIMENTAL]"
select NET_SOCKETS
select HTTP_PARSER
select HTTP_PARSER_URL
select HTTP_CLIENT
select MBEDTLS
select BASE64
select EXPERIMENTAL
help
Enable Websocket client library.
if WEBSOCKET_CLIENT
config WEBSOCKET_MAX_CONTEXTS
int "Max number of websockets to allocate"
default 1
help
How many Websockets can be created in the system.
module = NET_WEBSOCKET
module-dep = NET_LOG
module-str = Log level for Websocket
module-help = Enable debug message of Websocket client library.
source "subsys/net/Kconfig.template.log_config.net"
endif