source: azure_iot_hub_f767zi/trunk/azure_iot_sdk/provisioning_client/inc/azure_prov_client/prov_client_const.h@ 464

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

WolfSSLとAzure IoT SDKを更新

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 732 bytes
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 PROV_CLIENT_CONST_H
5#define PROV_CLIENT_CONST_H
6
7#define PROV_DEVICE_CLIENT_VERSION "1.6.0"
8#define PROV_GET_THROTTLE_TIME 1
9#define MAX_PROV_GET_THROTTLE_TIME 5*60
10
11static const char* const PROV_ASSIGNED_STATUS = "assigned";
12static const char* const PROV_ASSIGNING_STATUS = "assigning";
13static const char* const PROV_UNASSIGNED_STATUS = "unassigned";
14static const char* const PROV_DISABLE_STATUS = "disabled";
15
16static const char* const RETRY_AFTER_KEY_VALUE = "retry-after";
17
18static const char* const PROV_API_VERSION = "2019-03-31";
19
20#endif // PROV_CLIENT_CONST_H
Note: See TracBrowser for help on using the repository browser.