summaryrefslogtreecommitdiff
path: root/sources/libraries/WlanManager/EngineManager/connman-request.c
blob: 8c77c06acad052bd0502ccd2d31435c1805268d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Wi-Fi
 *
 * Copyright 2012 Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.tizenopensource.org/license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#include "common.h"
#include "wlan_manager.h"

int connman_request_register(void)
{
	int ret = net_register_client(network_evt_cb, NULL);
	switch (ret) {
		case NET_ERR_NONE:
			return WLAN_MANAGER_ERR_NONE;
		case NET_ERR_APP_ALREADY_REGISTERED:
			return WLAN_MANAGER_ERR_ALREADY_REGISTERED;
		default:
			return WLAN_MANAGER_ERR_UNKNOWN;
	}
}

int connman_request_deregister(void)
{
	int ret = net_deregister_client();
	switch (ret) {
		case NET_ERR_NONE:
			return WLAN_MANAGER_ERR_NONE;
		default:
			return WLAN_MANAGER_ERR_UNKNOWN;
	}
}

int connman_request_specific_scan(const char *ssid)
{
	int ret = net_specific_scan_wifi(ssid);
	INFO_LOG(COMMON_NAME_LIB,"net_specific_scan_wifi ret: %d", ret);

	switch (ret) {
		case NET_ERR_NONE:
		case NET_ERR_IN_PROGRESS:
			return WLAN_MANAGER_ERR_NONE;
		default:
			return WLAN_MANAGER_ERR_UNKNOWN;
	}
}

int connman_request_scan_mode_set(net_wifi_background_scan_mode_t scan_mode)
{
	int ret = net_wifi_set_background_scan_mode(scan_mode);
	INFO_LOG(COMMON_NAME_LIB, "net_wifi_set_background_scan_mode ret: %d", ret);

	switch (ret) {
	case NET_ERR_NONE:
		return WLAN_MANAGER_ERR_NONE;
	default:
		return WLAN_MANAGER_ERR_UNKNOWN;
	}
}