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>
26 lines
712 B
Plaintext
26 lines
712 B
Plaintext
#
|
|
# Copyright (c) 2016 Intel Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
menu "IoT Protocols"
|
|
|
|
source "lib/iot/zoap/Kconfig"
|
|
|
|
source "lib/iot/dns/Kconfig"
|
|
|
|
source "lib/iot/mqtt/Kconfig"
|
|
|
|
endmenu
|