zephyr/subsys/net/lib/Kconfig
Jukka Rissanen a1be6a8ba9 net: app: Create support for network application API
The network application API is a higher level API for creating
client and server type applications. Instead of applications
dealing with low level details, the network application API
provides services that most of the applications can use directly.

This commit removes the internal net_sample_*() API and converts
the existing users of it to use the new net_app API.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2017-06-30 06:13:09 -04:00

26 lines
385 B
Plaintext

#
# Copyright (c) 2016 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menu "Network Protocols"
source "subsys/net/lib/sockets/Kconfig"
source "subsys/net/lib/zoap/Kconfig"
source "subsys/net/lib/dns/Kconfig"
source "subsys/net/lib/mqtt/Kconfig"
source "subsys/net/lib/http/Kconfig"
endmenu
menu "Network Applications"
source "subsys/net/lib/app/Kconfig"
endmenu