73cd8e7a6e6586a809054df2c309237a283ae6bd
[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 struct {
45         char str[128];
46         gboolean flag;
47 } connman_multi_scan_ap_s;
48 #endif
49
50 struct connman_technology;
51
52 int connman_technology_tethering_add_station(enum connman_service_type type,
53                                               const char *mac);
54 int connman_technology_tethering_remove_station(const char *mac);
55
56 int connman_technology_tethering_notify(struct connman_technology *technology,
57                                                         bool enabled);
58 int connman_technology_set_regdom(const char *alpha2);
59 void connman_technology_regdom_notify(struct connman_technology *technology,
60                                                         const char *alpha2);
61
62 bool connman_technology_get_wifi_tethering(const char **ssid,
63                                                         const char **psk);
64 bool connman_technology_is_tethering_allowed(enum connman_service_type type);
65
66 struct connman_technology_driver {
67         const char *name;
68         enum connman_service_type type;
69         int priority;
70         int (*probe) (struct connman_technology *technology);
71         void (*remove) (struct connman_technology *technology);
72         void (*add_interface) (struct connman_technology *technology,
73                                                 int index, const char *name,
74                                                         const char *ident);
75         void (*remove_interface) (struct connman_technology *technology,
76                                                                 int index);
77         int (*set_tethering) (struct connman_technology *technology,
78                                 const char *identifier, const char *passphrase,
79                                 const char *bridge, bool enabled);
80         int (*set_regdom) (struct connman_technology *technology,
81                                                 const char *alpha2);
82 };
83
84 int connman_technology_driver_register(struct connman_technology_driver *driver);
85 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
86
87 #ifdef __cplusplus
88 }
89 #endif
90
91 #endif /* __CONNMAN_TECHNOLOGY_H */