mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-28 21:36:01 +00:00
This commit creates a websocket library that can be used by applications. The websocket library implements currently only server role and it uses services provided by net-app API. The library supports TLS if enabled in configuration file. This also adds websocket calls to HTTP app server if websocket connection is established. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
7 lines
196 B
CMake
7 lines
196 B
CMake
# base64 support is need from mbedtls
|
|
zephyr_include_directories(. $ENV{ZEPHYR_BASE}/ext/lib/crypto/mbedtls/include/)
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_WEBSOCKET websocket.c)
|