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:
Tue Sep 22 20:36:39 2015 -0700
Revision:
2:1e6040e0c035
Parent:
0:1b5f413bf328
New release

Who changed what in which revision?

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