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

Committer:
AzureIoTClient
Date:
Thu Oct 04 09:15:09 2018 -0700
Revision:
39:bc04888bf292
Parent:
38:01bf35934f1b
1.2.10

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AzureIoTClient 6:73793bae15ba 1 // Copyright (c) Microsoft. All rights reserved.
AzureIoTClient 6:73793bae15ba 2 // Licensed under the MIT license. See LICENSE file in the project root for full license information.
AzureIoTClient 6:73793bae15ba 3
AzureIoTClient 6:73793bae15ba 4 #ifndef IOTHUBTRANSPORTHTTP_H
AzureIoTClient 6:73793bae15ba 5 #define IOTHUBTRANSPORTHTTP_H
AzureIoTClient 6:73793bae15ba 6
Azure.IoT Build 15:52602fffff8d 7 #include "iothub_transport_ll.h"
AzureIoTClient 6:73793bae15ba 8
AzureIoTClient 6:73793bae15ba 9 #ifdef __cplusplus
AzureIoTClient 6:73793bae15ba 10 extern "C"
AzureIoTClient 6:73793bae15ba 11 {
AzureIoTClient 6:73793bae15ba 12 #endif
AzureIoTClient 6:73793bae15ba 13
AzureIoTClient 38:01bf35934f1b 14 extern const TRANSPORT_PROVIDER* HTTP_Protocol(void);
AzureIoTClient 6:73793bae15ba 15
AzureIoTClient 6:73793bae15ba 16 #ifdef __cplusplus
AzureIoTClient 6:73793bae15ba 17 }
AzureIoTClient 6:73793bae15ba 18 #endif
AzureIoTClient 6:73793bae15ba 19
AzureIoTClient 6:73793bae15ba 20 #endif /*IOTHUBTRANSPORTHTTP_H*/