zephyr/subsys/net/lib/websocket/Kconfig
Jukka Rissanen 009e4dafa7 net: Make Kconfig template variables prettier
Adding spaces around "=" when definining Kconfig template so
that is more consistent with overall style of these template
variables.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2018-10-05 09:01:37 -04:00

23 lines
481 B
Plaintext

# Copyright (c) 2017 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig WEBSOCKET
bool "Websocket support [EXPERIMENTAL]"
depends on HTTP
select NET_TCP
select BASE64
help
This option enables the websocket library.
if WEBSOCKET
module = WEBSOCKET
module-dep = NET_LOG
module-str = Log level for weboscket library
module-help = Enables websocket library to output debug messages.
source "subsys/net/Kconfig.template.log_config.net"
endif # WEBSOCKET