2016-08-04 02:23:32 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-08-04 02:23:32 +08:00
|
|
|
#
|
|
|
|
|
2016-12-24 05:09:15 +08:00
|
|
|
menu "Network Protocols"
|
2016-08-04 02:23:32 +08:00
|
|
|
|
2017-05-11 18:47:27 +08:00
|
|
|
source "subsys/net/lib/sockets/Kconfig"
|
|
|
|
|
2016-12-24 05:09:15 +08:00
|
|
|
source "subsys/net/lib/zoap/Kconfig"
|
2016-08-04 02:23:32 +08:00
|
|
|
|
2016-12-24 05:09:15 +08:00
|
|
|
source "subsys/net/lib/dns/Kconfig"
|
2016-10-06 13:07:48 +08:00
|
|
|
|
2016-12-24 05:09:15 +08:00
|
|
|
source "subsys/net/lib/mqtt/Kconfig"
|
iot: Add MQTT v3.1.1 packet handling support for Zephyr
This commit adds support for the MQTT protocol v3.1.1.
Specifically, this commit allows a Zephyr application to create
the following MQTT messages:
CONNACK, CONNECT, PUBLISH, PUBACK, PUBREC, PUBREL, PUBCOMP, UNSUBACK,
SUBSCRIBE, SUBACK, UNSUBSCRIBE, PINGREQ, PINGRESP, and DISCONNECT.
Furthermore, the following messages can be parsed by the routines
provided by this commit:
CONNACK, CONNECT, PUBLISH, PUBACK, PUBREC, PUBREL, PUBCOMP, UNSUBACK,
SUBSCRIBE, SUBACK, PINGREQ, PINGRESP and DISCONNECT.
NOTE: client behavior (routines with network access) and QoS will be
integrated in future patches.
The MQTT v3.1.1 specification can be found at:
http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/mqtt-v3.1.1.html
Origin: Original
Jira: ZEP-365
Jira: ZEP-591
Jira: ZEP-856
Change-Id: Ie0c179370cea22f7554564692bc426a8d5c419d2
Signed-off-by: Flavio Santes <flavio.santes@intel.com>
2016-11-08 12:37:19 +08:00
|
|
|
|
2016-12-24 05:09:15 +08:00
|
|
|
source "subsys/net/lib/http/Kconfig"
|
2016-09-01 10:46:36 +08:00
|
|
|
|
2016-08-04 02:23:32 +08:00
|
|
|
endmenu
|