[Easy-Setup] Changed the enrollee's cpp files to c files
[platform/upstream/iotivity.git] / service / easy-setup / enrollee / src / softap.h
1 //******************************************************************
2 //
3 // Copyright 2015 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 #ifndef EASYSETUP_ENROLLEE_SOFTAP_H__
23 #define EASYSETUP_ENROLLEE_SOFTAP_H__
24
25 #include "escommon.h"
26 #include "networkhandler.h"
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 /**
33  * @file
34  *
35  * This file contains platform agnostic API for creation of Soft AP
36  * @Note : Some of the APIs of this file need to be modified by the OEM according to the device configuration
37  */
38
39 /**
40  * This function verify if the Soft AP is created at Enrollee device.
41  * @return ::True, if Soft AP is created at Enrollee device.
42  * @Note : This API needs to be modified by the OEM according to the device configuration
43  */
44
45 bool ESSoftapAtEnrollee();
46
47 /**
48  * This function verify if the Soft AP is created at Mediator device.
49  * @return ::True, if Soft AP is created at Mediator device.
50  * @Note : This API needs to be modified by the OEM according to the device configuration
51  */
52
53 bool ESSoftapAtMediator();
54
55
56 /**
57  * This function finds which Device (Enrollee or Mediator) is creating Soft AP.
58  * @return ::DeviceRole (ENROLLEE or MEDIATOR)
59  * @Note : This API needs to be modified by the OEM according to the device configuration
60  */
61
62 DeviceRole ESSoftapHost();
63
64 /**
65  * This function Initializes the EasySetup. This API must be called prior to invoking any other API
66  *
67  * @param ssid                 SSID of the target SoftAP network to which the Enrollee is connecting.
68  * @param passwd               Password of the target SoftAP network to which the Enrollee is connecting
69  * @param NetworkEventCallback Callback function for result update
70  * @return ::void.
71  */
72 void ESCreateSoftap(const char * ssid, const char* passwd, NetworkEventCallback cb);
73
74
75 #ifdef __cplusplus
76 }
77 #endif
78
79 #endif /* EASYSETUP_ENROLLEE_SOFTAP_H__ */
80
81
82