zephyr/subsys/net/lib/websocket/Kconfig
Jukka Rissanen 6170ae5e2e net: websocket: Use system provided base64 function
Instead of using mbedtls_base64, use system provided base64 encoding
function.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2018-03-23 08:30:26 -04:00

24 lines
415 B
Plaintext

# Copyright (c) 2017 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig WEBSOCKET
bool "Websocket support [EXPERIMENTAL]"
default n
depends on HTTP
select NET_TCP
select BASE64
help
This option enables the websocket library.
if WEBSOCKET
config NET_DEBUG_WEBSOCKET
bool "Debug websocket library"
default n
help
Enables websocket library to output debug messages
endif # WEBSOCKET