Microsoft Azure IoTHub client libraries

Dependents:   sht15_remote_monitoring RobotArmDemo iothub_client_sample_amqp f767zi_mqtt ... more

This library implements the Microsoft Azure IoTHub client library. The code is replicated from https://github.com/Azure/azure-iot-sdks

Revision:
59:7e89be231352
Parent:
58:15b0d29b2667
Child:
60:41648c4e7036
--- a/iothub_client.c	Sat Jan 28 09:34:27 2017 -0800
+++ b/iothub_client.c	Fri Feb 10 17:00:39 2017 -0800
@@ -781,6 +781,13 @@
                         free(queue_cb_info->iothub_callback.dev_twin_cb_info.payLoad);
                     }
                 }
+                else if (queue_cb_info->type == CALLBACK_TYPE_EVENT_CONFIRM)
+                {
+                    if (iotHubClientInstance->event_confirm_callback)
+                    {
+                        iotHubClientInstance->event_confirm_callback(queue_cb_info->iothub_callback.event_confirm_cb_info.confirm_result, queue_cb_info->userContextCallback);
+                    }
+                }
             }
         }
         VECTOR_destroy(iotHubClientInstance->saved_user_callback_list);