Merge "Remove RW upgrade script" into tizen
[platform/upstream/connman.git] / include / technology.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2013  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifndef __CONNMAN_TECHNOLOGY_H
23 #define __CONNMAN_TECHNOLOGY_H
24
25 #include <connman/service.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 /**
32  * SECTION:technology
33  * @title: technology premitives
34  * @short_description: Functions for handling technology details
35  */
36
37 #if defined TIZEN_EXT
38 typedef enum {
39         CONNMAN_MULTI_SCAN_SSID = 0x01,
40         CONNMAN_MULTI_SCAN_FREQ,
41         CONNMAN_MULTI_SCAN_SSID_FREQ,
42 } connman_multi_scan_type_e;
43
44 typedef enum {
45         CONNMAN_SCAN_TYPE_FULL_CHANNEL = 0x00,
46         CONNMAN_SCAN_TYPE_SPECIFIC_AP,
47         CONNMAN_SCAN_TYPE_MULTI_AP,
48         CONNMAN_SCAN_TYPE_WPA_SUPPLICANT,
49 } connman_scan_type_e;
50
51 typedef struct {
52         char str[128];
53         gboolean flag;
54 } connman_multi_scan_ap_s;
55 #endif
56
57 struct connman_technology;
58
59 int connman_technology_tethering_notify(struct connman_technology *technology,
60                                                         bool enabled);
61 int connman_technology_set_regdom(const char *alpha2);
62 void connman_technology_regdom_notify(struct connman_technology *technology,
63                                                         const char *alpha2);
64
65 enum connman_service_type connman_technology_get_type
66                                 (struct connman_technology *technology);
67 bool connman_technology_get_wifi_tethering(const char **ssid,
68                                                         const char **psk);
69 bool connman_technology_is_tethering_allowed(enum connman_service_type type);
70
71 struct connman_technology_driver {
72         const char *name;
73         enum connman_service_type type;
74         int priority;
75         int (*probe) (struct connman_technology *technology);
76         void (*remove) (struct connman_technology *technology);
77         void (*add_interface) (struct connman_technology *technology,
78                                                 int index, const char *name,
79                                                         const char *ident);
80         void (*remove_interface) (struct connman_technology *technology,
81                                                                 int index);
82         int (*set_tethering) (struct connman_technology *technology,
83                                 const char *identifier, const char *passphrase,
84                                 const char *bridge, bool enabled);
85         int (*set_regdom) (struct connman_technology *technology,
86                                                 const char *alpha2);
87 };
88
89 int connman_technology_driver_register(struct connman_technology_driver *driver);
90 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
91 #if defined TIZEN_EXT
92 void connman_techonology_wifi_set_5ghz_supported(struct connman_technology *technology,
93                 bool is_5_0_Ghz_supported);
94 void connman_techonology_set_max_scan_ssids(struct connman_technology *technology,
95                 int max_scan_ssids);
96 void __connman_technology_notify_scan_done(int val);
97 #endif
98
99 #ifdef __cplusplus
100 }
101 #endif
102
103 #endif /* __CONNMAN_TECHNOLOGY_H */