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
iothub_client_options.h@48:cc5d91f2b06d, 2016-08-12 (annotated)
- Committer:
- AzureIoTClient
- Date:
- Fri Aug 12 10:04:01 2016 -0700
- Revision:
- 48:cc5d91f2b06d
- Child:
- 66:a419827cb051
1.0.10
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AzureIoTClient | 48:cc5d91f2b06d | 1 | // Copyright (c) Microsoft. All rights reserved. |
AzureIoTClient | 48:cc5d91f2b06d | 2 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. |
AzureIoTClient | 48:cc5d91f2b06d | 3 | |
AzureIoTClient | 48:cc5d91f2b06d | 4 | #ifndef IOTHUB_CLIENT_OPTIONS_H |
AzureIoTClient | 48:cc5d91f2b06d | 5 | #define IOTHUB_CLIENT_OPTIONS_H |
AzureIoTClient | 48:cc5d91f2b06d | 6 | |
AzureIoTClient | 48:cc5d91f2b06d | 7 | #ifdef __cplusplus |
AzureIoTClient | 48:cc5d91f2b06d | 8 | extern "C" |
AzureIoTClient | 48:cc5d91f2b06d | 9 | { |
AzureIoTClient | 48:cc5d91f2b06d | 10 | #endif |
AzureIoTClient | 48:cc5d91f2b06d | 11 | |
AzureIoTClient | 48:cc5d91f2b06d | 12 | typedef struct IOTHUB_PROXY_OPTIONS_TAG |
AzureIoTClient | 48:cc5d91f2b06d | 13 | { |
AzureIoTClient | 48:cc5d91f2b06d | 14 | const char* host_address; |
AzureIoTClient | 48:cc5d91f2b06d | 15 | const char* username; |
AzureIoTClient | 48:cc5d91f2b06d | 16 | const char* password; |
AzureIoTClient | 48:cc5d91f2b06d | 17 | } IOTHUB_PROXY_OPTIONS; |
AzureIoTClient | 48:cc5d91f2b06d | 18 | |
AzureIoTClient | 48:cc5d91f2b06d | 19 | static const char* OPTION_LOG_TRACE = "logtrace"; |
AzureIoTClient | 48:cc5d91f2b06d | 20 | static const char* OPTION_X509_CERT = "x509certificate"; |
AzureIoTClient | 48:cc5d91f2b06d | 21 | static const char* OPTION_X509_PRIVATE_KEY = "x509privatekey"; |
AzureIoTClient | 48:cc5d91f2b06d | 22 | static const char* OPTION_KEEP_ALIVE = "keepalive"; |
AzureIoTClient | 48:cc5d91f2b06d | 23 | |
AzureIoTClient | 48:cc5d91f2b06d | 24 | static const char* OPTION_PROXY_HOST = "proxy_address"; |
AzureIoTClient | 48:cc5d91f2b06d | 25 | static const char* OPTION_PROXY_USERNAME = "proxy_username"; |
AzureIoTClient | 48:cc5d91f2b06d | 26 | static const char* OPTION_PROXY_PASSWORD = "proxy_password"; |
AzureIoTClient | 48:cc5d91f2b06d | 27 | |
AzureIoTClient | 48:cc5d91f2b06d | 28 | static const char* OPTION_SAS_TOKEN_LIFETIME = "sas_token_lifetime"; |
AzureIoTClient | 48:cc5d91f2b06d | 29 | static const char* OPTION_SAS_TOKEN_REFRESH_TIME = "sas_token_refresh_time"; |
AzureIoTClient | 48:cc5d91f2b06d | 30 | static const char* OPTION_CBS_REQUEST_TIMEOUT = "cbs_request_timeout"; |
AzureIoTClient | 48:cc5d91f2b06d | 31 | |
AzureIoTClient | 48:cc5d91f2b06d | 32 | static const char* OPTION_MIN_POLLING_TIME = "MinimumPollingTime"; |
AzureIoTClient | 48:cc5d91f2b06d | 33 | static const char* OPTION_BATCHING = "Batching"; |
AzureIoTClient | 48:cc5d91f2b06d | 34 | |
AzureIoTClient | 48:cc5d91f2b06d | 35 | #ifdef __cplusplus |
AzureIoTClient | 48:cc5d91f2b06d | 36 | } |
AzureIoTClient | 48:cc5d91f2b06d | 37 | #endif |
AzureIoTClient | 48:cc5d91f2b06d | 38 | |
AzureIoTClient | 48:cc5d91f2b06d | 39 | #endif /* IOTHUB_CLIENT_OPTIONS_H */ |