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:
Mon Jun 11 15:38:09 2018 -0700
Revision:
53:e21e1e88460f
Parent:
uamqp_messaging.h@46:c688c75b63b9
Child:
56:8704100b3b54
1.2.5

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 26:ee14eed604f6 9 #include "azure_c_shared_utility/umock_c_prod.h"
AzureIoTClient 23:2c6779675a01 10
AzureIoTClient 23:2c6779675a01 11 #ifdef __cplusplus
AzureIoTClient 23:2c6779675a01 12 extern "C"
AzureIoTClient 23:2c6779675a01 13 {
AzureIoTClient 23:2c6779675a01 14 #endif
AzureIoTClient 23:2c6779675a01 15
AzureIoTClient 41:71c01aa3df1a 16 MOCKABLE_FUNCTION(, int, message_create_IoTHubMessage_from_uamqp_message, MESSAGE_HANDLE, uamqp_message, IOTHUB_MESSAGE_HANDLE*, iothubclient_message);
AzureIoTClient 46:c688c75b63b9 17 MOCKABLE_FUNCTION(, int, message_create_uamqp_encoding_from_iothub_message, MESSAGE_HANDLE, message_batch_container, IOTHUB_MESSAGE_HANDLE, message_handle, BINARY_DATA*, body_binary_data);
AzureIoTClient 23:2c6779675a01 18
AzureIoTClient 23:2c6779675a01 19 #ifdef __cplusplus
AzureIoTClient 23:2c6779675a01 20 }
AzureIoTClient 23:2c6779675a01 21 #endif
AzureIoTClient 23:2c6779675a01 22
AzureIoTClient 23:2c6779675a01 23 #endif /*UAMQP_MESSAGING_H*/