Microsoft Azure IoTHub client HTTP transport

Dependents:   iothub_client_sample_http simplesample_http temp_sensor_anomaly

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

Revision:
15:52602fffff8d
Parent:
14:fae5c6b2cce3
Child:
16:46f0f4f95c07
--- a/iothubtransporthttp.c	Fri Mar 25 15:59:57 2016 -0700
+++ b/iothubtransporthttp.c	Fri Apr 08 13:24:07 2016 -0700
@@ -5,24 +5,25 @@
 #ifdef _CRTDBG_MAP_ALLOC
 #include <crtdbg.h>
 #endif
-#include "gballoc.h"
+#include "azure_c_shared_utility/gballoc.h"
 
 #include <time.h>
 #include "iothub_client_version.h"
 #include "iothub_client_private.h"
+#include "iothub_transport_ll.h"
 #include "iothubtransporthttp.h"
 
-#include "httpapiexsas.h"
-#include "urlencode.h"
-#include "iot_logging.h"
-#include "httpapiex.h"
-#include "httpapiexsas.h"
-#include "strings.h"
-#include "base64.h"
-#include "doublylinkedlist.h"
-#include "vector.h"
-#include "httpheaders.h"
-#include "agenttime.h"
+#include "azure_c_shared_utility/httpapiexsas.h"
+#include "azure_c_shared_utility/urlencode.h"
+#include "azure_c_shared_utility/iot_logging.h"
+#include "azure_c_shared_utility/httpapiex.h"
+#include "azure_c_shared_utility/httpapiexsas.h"
+#include "azure_c_shared_utility/strings.h"
+#include "azure_c_shared_utility/base64.h"
+#include "azure_c_shared_utility/doublylinkedlist.h"
+#include "azure_c_shared_utility/vector.h"
+#include "azure_c_shared_utility/httpheaders.h"
+#include "azure_c_shared_utility/agenttime.h"
 
 #define IOTHUB_APP_PREFIX "iothub-app-"
 const char* IOTHUB_MESSAGE_ID = "iothub-messageid";