Microsoft Azure IoTHub client AMQP transport

Dependents:   sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp iothub_client_sample_amqp ... more

This library implements the AMQP transport for Microsoft Azure IoTHub client. The code is replicated from https://github.com/Azure/azure-iot-sdks

Committer:
AzureIoTClient
Date:
Thu Oct 04 09:14:47 2018 -0700
Revision:
57:56ac1346c70d
Parent:
17:597443dc65a4
1.2.10

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 4:57e049bce51e 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 4:57e049bce51e 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 4:57e049bce51e 3
AzureIoTClient 4:57e049bce51e 4 #ifndef IOTHUBTRANSPORTAMQP_H
AzureIoTClient 4:57e049bce51e 5 #define IOTHUBTRANSPORTAMQP_H
AzureIoTClient 4:57e049bce51e 6
Azure.IoT Build 12:841a4c36bd36 7 #include "iothub_transport_ll.h"
AzureIoTClient 4:57e049bce51e 8
AzureIoTClient 4:57e049bce51e 9 #ifdef __cplusplus
AzureIoTClient 4:57e049bce51e 10 extern "C"
AzureIoTClient 4:57e049bce51e 11 {
AzureIoTClient 4:57e049bce51e 12 #endif
AzureIoTClient 4:57e049bce51e 13
AzureIoTClient 17:597443dc65a4 14 extern const TRANSPORT_PROVIDER* AMQP_Protocol(void);
AzureIoTClient 4:57e049bce51e 15
AzureIoTClient 4:57e049bce51e 16 #ifdef __cplusplus
AzureIoTClient 4:57e049bce51e 17 }
AzureIoTClient 4:57e049bce51e 18 #endif
AzureIoTClient 4:57e049bce51e 19
AzureIoTClient 4:57e049bce51e 20 #endif /*IOTHUBTRANSPORTAMQP_H*/