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

Revision:
9:8abcd13782f4
Parent:
8:450043aa3c5c
Child:
10:75c5e0d8537d
--- a/iothubtransportamqp.c	Thu Feb 04 15:56:59 2016 -0800
+++ b/iothubtransportamqp.c	Tue Feb 16 14:24:48 2016 -0800
@@ -824,7 +824,7 @@
             else
             {
                 // Codes_SRS_IOTHUBTRANSPORTAMQP_09_097: [IoTHubTransportAMQP_DoWork shall pass the encoded AMQP message to AMQP for sending (along with on_message_send_complete callback) using messagesender_send()] 
-                if (messagesender_send(transport_state->message_sender, amqp_message, on_message_send_complete, (const void*)event_tracker) != RESULT_OK)
+                if (messagesender_send(transport_state->message_sender, amqp_message, on_message_send_complete, event_tracker) != RESULT_OK)
                 {
                     LogError("Failed sending the AMQP message.\r\n");
                 }