Restructuring of the easy-setup service.
[platform/upstream/iotivity.git] / service / easy-setup / enrollee / linux / wifi / networkhandler.cpp
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 #include <unistd.h>
22
23 #include "logger.h"
24 #include "easysetup.h"
25 #include "networkhandler.h"
26
27 #define LOG_TAG "TIZEN ES"
28
29 const char *gSsid = "DLNA_LISMORE1";
30 const char *gPass = "dlna@010203";
31 char *gIpAddress;
32 NetworkEventCallback gNetworkEventCb;
33 static void ESActivateWifi();
34
35 static void ESActivateWifi()
36 {
37
38 }
39
40 static void start()
41 {
42     OC_LOG(INFO, LOG_TAG, "START");
43     ESActivateWifi();
44 }
45
46 void ConnectToWiFiNetwork(const char *ssid, const char *pass, NetworkEventCallback cb)
47 {
48     OC_LOG_V(INFO, LOG_TAG, "ConnectToWiFiNetwork %s %s",ssid,pass);
49     gPass = pass;
50     gSsid = ssid;
51     gNetworkEventCb = cb;
52     start();
53 }
54
55 ESResult getCurrentNetworkInfo(OCConnectivityType targetType, NetworkInfo *info)
56 {
57     if (targetType == CT_ADAPTER_IP)
58     {
59         info->type = CT_ADAPTER_IP;
60         info->ipaddr = gIpAddress;
61         if (strlen(gSsid) <= MAXSSIDLEN)
62         {
63             strcpy(info->ssid, gSsid);
64             return ES_OK;
65         }
66         else
67         {
68             return ES_ERROR;
69         }
70     }
71
72     return ES_ERROR;
73 }
74