source: azure_iot_hub_riscv/trunk/azure_iot_sdk/iothub_client/inc/internal/iothub_internal_consts.h@ 453

Last change on this file since 453 was 453, checked in by coas-nagasima, 4 years ago

ファイルを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 1.2 KB
Line 
1// Copyright (c) Microsoft. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
4#ifndef IOTHUB_INTERNAL_CONSTS_H
5#define IOTHUB_INTERNAL_CONSTS_H
6
7#ifdef __cplusplus
8extern "C"
9{
10#endif
11
12 static const char* IOTHUB_API_VERSION = "2019-10-01";
13 // TODO: https://github.com/Azure/azure-iot-sdk-c/issues/1547 tracks removing this preview
14 // variable once the underlying logic is enabled on all IoTHubs.
15 static const char* IOTHUB_API_PREVIEW_VERSION = "2020-05-31-preview";
16
17 static const char* SECURITY_INTERFACE_INTERNAL_ID = "iothub-interface-internal-id";
18 static const char* SECURITY_INTERFACE_INTERNAL_ID_VALUE = "security*azureiot*com^SecurityAgent^1*0*0";
19 static const char* SECURITY_INTERFACE_ID = "iothub-interface-id";
20 static const char* SECURITY_INTERFACE_ID_MQTT = "ifid";
21 static const char* SECURITY_INTERFACE_ID_VALUE = "urn:azureiot:Security:SecurityAgent:1";
22 static const char* SECURITY_MESSAGE_SCHEMA = "iothub-message-schema";
23 static const char* SECURITY_MESSAGE_SCHEMA_VALUE = "sevent";
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif /* IOTHUB_INTERNAL_CONSTS_H */
Note: See TracBrowser for help on using the repository browser.