1 //******************************************************************
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
11 // http://www.apache.org/licenses/LICENSE-2.0
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
36 #define OIC_STRING_MAX_VALUE 100
37 #define IPV4_ADDR_SIZE 16
39 #define NET_WIFI_SSID_SIZE 100
40 #define NET_WIFI_PWD_SIZE 100
43 * @brief Mac address length for BT port
45 #define NET_MACADDR_SIZE 18
48 * Attributes used to form a proper easysetup conforming JSON message.
50 #define OC_RSRVD_ES_PS "ps"
51 #define OC_RSRVD_ES_TNN "tnn"
52 #define OC_RSRVD_ES_CD "cd"
53 #define OC_RSRVD_ES_TR "tr"
54 #define OC_RSRVD_ES_TNT "tnt"
55 #define OC_RSRVD_ES_ANT "ant"
58 * Easysetup defined resoruce types and uris.
60 #define OC_RSRVD_ES_PROV_RES_TYPE "oic.r.prov"
61 #define OC_RSRVD_ES_URI_PROV "/oic/prov"
62 #define OC_RSRVD_ES_URI_NET "/oic/net"
65 * @brief Defines for Provisioning status accepted values
67 #define ES_PS_NEED_PROVISIONING 1
68 #define ES_PS_PROVISIONING_COMPLETED 2
71 * Device Roles defined for each device type used in easy setup
81 * On-boarding connection to create Adhoc network.
95 ES_NETWORKNOTCONNECTED,
96 ES_RESOURCECREATED = 11,
97 ES_RECVREQOFPROVRES = 21,
99 ES_RECVUPDATEOFPROVRES,
100 ES_RECVTRIGGEROFPROVRES,
106 * Default state of the device
111 * Device will move to this state once the on boarding begins
113 ES_ON_BOARDING_STATE,
116 * Device will move to this state after successful on-boarding of the device
121 * Device will move to this state once the on boarding is done
123 ES_PROVISIONING_STATE,
126 * Easy setup process is successful.
128 ES_PROVISIONED_STATE,
131 * This state is arbitrary one, any time device can come into this state
132 * Device will move to this state if the ownership transfer initiated by the Application
134 ES_OWNERSHIP_TRANSFERRING_STATE,
137 * This state is arbitrary one, any time device can come into this state
138 * Device will move to this state if the ownership transfer is completed
140 ES_OWNERSHIP_TRANSFERRED_STATE,
143 * This state is arbitrary one, any time device can come into this state
144 * Device will move to this state once the Application factory reset the device
146 ES_FACTORY_RESET_STATE,
149 * Enrollee moves to this state after connecting to target network
151 ES_ON_BOARDED_TARGET_NETWORK_STATE,
155 * Provisioning Device Status
159 // Address of remote server
161 // Indicates adaptor type on which the response was received
162 OCConnectivityType connType;
163 } EasySetupDeviceInfo;
166 * Provosioning Status
170 DEVICE_PROVISIONED = 0,
171 DEVICE_NOT_PROVISIONED,
174 } EasySetupState, ProvStatus;
177 * Response from queries to remote servers.
182 EasySetupState provStatus;
183 // EasySetup Device Info
184 EasySetupDeviceInfo provDeviceInfo;
185 } EasySetupInfo, ProvisioningInfo;
188 * @brief Network information of the Enroller
193 * @brief BT Mac Information
197 char btMacAddress[NET_MACADDR_SIZE]; /**< BT mac address **/
201 * @brief LE MAC Information
205 char leMacAddress[NET_MACADDR_SIZE]; /**< BLE mac address **/
209 * @brief IP Information
213 char ssid[NET_WIFI_SSID_SIZE]; /**< ssid of the Enroller**/
214 char pwd[NET_WIFI_PWD_SIZE]; /**< pwd of the Enroller**/
219 * @brief Network Information
223 ProvData provData; /**< Enroller Network Info**/
224 OCConnectivityType connType; /**< Connectivity Type**/
228 * Client applications implement this callback to consume responses received from Servers.
230 typedef void (*OCProvisioningStatusCB)(EasySetupInfo *easySetupInfo);
233 * @brief This structure represent configuration information to create wifi onboarding SoftAP or connection.
237 // Note : Below structure is not currently used but added for future purpose.
239 char ssid[NET_WIFI_SSID_SIZE]; /**< ssid of the onboarding Adhoc Wifi network**/
240 char pwd[NET_WIFI_PWD_SIZE]; /**< pwd of the onboarding Adhoc wifi network**/
241 bool isSecured; /**< Secure connection**/
242 }WiFiOnboardingConfig;
245 * @brief This structure represent onboarding connection instance.
248 /*Actual use of ipAddress is for unicast discovery, but also used to identify the Enrollee device as of now,
249 device identification should be based on DeviceID in next release.*/
250 char ipAddress[IPV4_ADDR_SIZE]; /**< IP Address of the Enrollee **/
251 bool isSecured; /**< Secure connection**/
252 }WiFiOnboadingConnection;
254 #endif //ES_COMMON_H_