2016-08-03 20:23:32 +02:00
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Intel Corporation
|
|
|
|
#
|
2017-01-19 02:01:01 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-08-03 20:23:32 +02:00
|
|
|
#
|
|
|
|
|
2016-12-23 22:09:15 +01:00
|
|
|
menu "Network Protocols"
|
2016-08-03 20:23:32 +02:00
|
|
|
|
2017-08-28 11:19:32 +02:00
|
|
|
source "subsys/net/lib/coap/Kconfig"
|
|
|
|
|
2016-12-23 22:09:15 +01:00
|
|
|
source "subsys/net/lib/dns/Kconfig"
|
2016-10-06 07:07:48 +02:00
|
|
|
|
2016-12-23 22:09:15 +01: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 05:37:19 +01:00
|
|
|
|
2016-12-23 22:09:15 +01:00
|
|
|
source "subsys/net/lib/http/Kconfig"
|
2016-09-01 04:46:36 +02:00
|
|
|
|
2017-07-07 20:04:03 +02:00
|
|
|
source "subsys/net/lib/lwm2m/Kconfig"
|
|
|
|
|
2017-09-05 12:40:39 +02:00
|
|
|
source "subsys/net/lib/sntp/Kconfig"
|
|
|
|
|
2017-08-20 22:15:07 +02:00
|
|
|
source "subsys/net/lib/websocket/Kconfig"
|
|
|
|
|
2016-08-03 20:23:32 +02:00
|
|
|
endmenu
|
2017-05-10 21:23:29 +02:00
|
|
|
|
2017-08-15 11:45:00 +02:00
|
|
|
menu "Network Application Support"
|
2017-05-10 21:23:29 +02:00
|
|
|
|
|
|
|
source "subsys/net/lib/app/Kconfig"
|
|
|
|
|
2017-08-15 11:45:00 +02:00
|
|
|
source "subsys/net/lib/sockets/Kconfig"
|
|
|
|
|
2017-05-10 21:23:29 +02:00
|
|
|
endmenu
|