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:
Fri Sep 09 13:37:13 2016 -0700
Revision:
23:2c6779675a01
Child:
26:ee14eed604f6
1.0.10

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 23:2c6779675a01 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 23:2c6779675a01 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 23:2c6779675a01 3
AzureIoTClient 23:2c6779675a01 4 #ifndef UAMQP_MESSAGING_H
AzureIoTClient 23:2c6779675a01 5 #define UAMQP_MESSAGING_H
AzureIoTClient 23:2c6779675a01 6
AzureIoTClient 23:2c6779675a01 7 #include "iothub_message.h"
AzureIoTClient 23:2c6779675a01 8 #include "azure_uamqp_c/message.h"
AzureIoTClient 23:2c6779675a01 9
AzureIoTClient 23:2c6779675a01 10 #ifdef __cplusplus
AzureIoTClient 23:2c6779675a01 11 extern "C"
AzureIoTClient 23:2c6779675a01 12 {
AzureIoTClient 23:2c6779675a01 13 #endif
AzureIoTClient 23:2c6779675a01 14
AzureIoTClient 23:2c6779675a01 15 extern int IoTHubMessage_CreateFromUamqpMessage(MESSAGE_HANDLE uamqp_message, IOTHUB_MESSAGE_HANDLE* iothubclient_message);
AzureIoTClient 23:2c6779675a01 16 extern int message_create_from_iothub_message(IOTHUB_MESSAGE_HANDLE iothub_message, MESSAGE_HANDLE* uamqp_message);
AzureIoTClient 23:2c6779675a01 17
AzureIoTClient 23:2c6779675a01 18 #ifdef __cplusplus
AzureIoTClient 23:2c6779675a01 19 }
AzureIoTClient 23:2c6779675a01 20 #endif
AzureIoTClient 23:2c6779675a01 21
AzureIoTClient 23:2c6779675a01 22 #endif /*UAMQP_MESSAGING_H*/