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:
Azure.IoT Build
Date:
Fri Apr 08 13:23:54 2016 -0700
Revision:
12:841a4c36bd36
Parent:
4:57e049bce51e
Child:
17:597443dc65a4
1.0.4

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_client_ll.h"
Azure.IoT Build 12:841a4c36bd36 8 #include "iothub_transport_ll.h"
AzureIoTClient 4:57e049bce51e 9
AzureIoTClient 4:57e049bce51e 10 #ifdef __cplusplus
AzureIoTClient 4:57e049bce51e 11 extern "C"
AzureIoTClient 4:57e049bce51e 12 {
AzureIoTClient 4:57e049bce51e 13 #endif
AzureIoTClient 4:57e049bce51e 14
AzureIoTClient 4:57e049bce51e 15 extern const void* AMQP_Protocol(void);
AzureIoTClient 4:57e049bce51e 16
AzureIoTClient 4:57e049bce51e 17 #ifdef __cplusplus
AzureIoTClient 4:57e049bce51e 18 }
AzureIoTClient 4:57e049bce51e 19 #endif
AzureIoTClient 4:57e049bce51e 20
AzureIoTClient 4:57e049bce51e 21 #endif /*IOTHUBTRANSPORTAMQP_H*/