zephyr/subsys/net/lib/Kconfig
Ravi kumar Veeramally c8954d3544 net: coap: CoAP library support over sockets
CoAP library is migrated to support over socket based
applications or other higher layer protocols. Most of the
API's and functionality is kept as it is except few changes.

net_pkt/net_buf is removed from CoAP library. Now it expects
a pre-allocated flat buffer and length. If there is not enough
space to append any data, library simply returns an error.
It's user's responsibility to allocate and free memory.

One change in functionality is, earlier coap_pending_clear()
used to clear the memory, but now it's user's responsibility
to free the memory.

Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@linux.intel.com>
2018-10-31 19:44:25 -04:00

38 lines
634 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/coap_sock/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 Libraries"
source "subsys/net/lib/config/Kconfig"
source "subsys/net/lib/app/Kconfig"
source "subsys/net/lib/sockets/Kconfig"
source "subsys/net/lib/tls_credentials/Kconfig"
endmenu