mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-30 05:45:22 +00:00
Instead of using mbedtls_base64, use system provided base64 encoding function. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
24 lines
415 B
Plaintext
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
|