2016-08-03 20:23:32 +02:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2016-12-23 22:09:15 +01:00
|
|
|
menu "Network Protocols"
|
2016-08-03 20:23:32 +02:00
|
|
|
|
2016-12-23 22:09:15 +01:00
|
|
|
source "subsys/net/lib/zoap/Kconfig"
|
2016-08-03 20:23:32 +02:00
|
|
|
|
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
|
|
|
|
2016-08-03 20:23:32 +02:00
|
|
|
endmenu
|