Merge branch '1.1-rel'
[platform/upstream/iotivity.git] / service / easy-setup / enrollee / src / easysetupcallbacks.h
1 //******************************************************************
2 //
3 // Copyright 2016 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
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
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
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.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 /**
22  * @file
23  *
24  * This file contains private internal callback function
25  * prototypes for Easy setup [Enrollee]
26  */
27
28 #ifndef EASYSETUP_ENROLLEE_CALLBACKS_H__
29 #define EASYSETUP_ENROLLEE_CALLBACKS_H__
30
31 #include "escommon.h"
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif // __cplusplus
36
37 //-----------------------------------------------------------------------------
38 // Private internal callback function prototypes for Easy setup [Enrollee]
39 //-----------------------------------------------------------------------------
40
41  /*
42  * Callback for on boarding
43  */
44 void ESOnboardingCallback(ESResult esResult);
45
46  /*
47  * Callback for provisioning
48  */
49 void ESProvisioningCallback(ESResult SSSS);
50
51  /*
52  * Callback for on boarding target Network
53  */
54 void ESOnboardingCallbackTargetNet(ESResult esResult);
55
56  /*
57  * Function for validating the parameter for ESInitEnrollee API
58  */
59 static bool ESEnrolleeValidateParam(OCConnectivityType networkType, const char *ssid,
60                                                 const char *passwd, ESEnrolleeEventCallback cb);
61
62 #ifdef __cplusplus
63 }
64 #endif // __cplusplus
65
66
67 #endif /* EASYSETUP_ENROLLEE_CALLBACKS_H__ */
68
69