zephyr/subsys/net/lib/Kconfig
Jukka Rissanen d70c7383de net: websocket: Initial support for server websocket
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>
2018-03-15 15:17:36 +02:00

32 lines
512 B
Plaintext

#
# Copyright (c) 2016 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menu "Network Protocols"
source "subsys/net/lib/coap/Kconfig"
source "subsys/net/lib/dns/Kconfig"
source "subsys/net/lib/mqtt/Kconfig"
source "subsys/net/lib/http/Kconfig"
source "subsys/net/lib/lwm2m/Kconfig"
source "subsys/net/lib/sntp/Kconfig"
source "subsys/net/lib/websocket/Kconfig"
endmenu
menu "Network Application Support"
source "subsys/net/lib/app/Kconfig"
source "subsys/net/lib/sockets/Kconfig"
endmenu