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
internal/uamqp_messaging.h@57:56ac1346c70d, 2018-10-04 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Thu Oct 04 09:14:47 2018 -0700
- Revision:
- 57:56ac1346c70d
- Parent:
- 56:8704100b3b54
1.2.10
Who changed what in which revision?
User | Revision | Line number | New 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 | 56:8704100b3b54 | 16 | MOCKABLE_FUNCTION(, int, message_create_IoTHubMessage_from_uamqp_message, MESSAGE_HANDLE, uamqp_message, IOTHUB_MESSAGE_HANDLE*, iothubclient_message); |
AzureIoTClient | 56:8704100b3b54 | 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 | 56:8704100b3b54 | 23 | #endif /*UAMQP_MESSAGING_H*/ |