Merge "Modified logic to process each VSIE of all vendors." 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 struct connman_technology;
38
39 int connman_technology_tethering_add_station(enum connman_service_type type,
40                                               const char *mac);
41 int connman_technology_tethering_remove_station(const char *mac);
42
43 void connman_technology_tethering_notify(struct connman_technology *technology,
44                                                         bool enabled);
45 int connman_technology_set_regdom(const char *alpha2);
46 void connman_technology_regdom_notify(struct connman_technology *technology,
47                                                         const char *alpha2);
48
49 bool connman_technology_get_wifi_tethering(const char **ssid,
50                                                         const char **psk);
51 bool connman_technology_is_tethering_allowed(enum connman_service_type type);
52
53 struct connman_technology_driver {
54         const char *name;
55         enum connman_service_type type;
56         int priority;
57         int (*probe) (struct connman_technology *technology);
58         void (*remove) (struct connman_technology *technology);
59         void (*add_interface) (struct connman_technology *technology,
60                                                 int index, const char *name,
61                                                         const char *ident);
62         void (*remove_interface) (struct connman_technology *technology,
63                                                                 int index);
64         int (*set_tethering) (struct connman_technology *technology,
65                                 const char *identifier, const char *passphrase,
66                                 const char *bridge, bool enabled, bool hidden);
67         int (*set_regdom) (struct connman_technology *technology,
68                                                 const char *alpha2);
69 };
70
71 int connman_technology_driver_register(struct connman_technology_driver *driver);
72 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
73
74 #ifdef __cplusplus
75 }
76 #endif
77
78 #endif /* __CONNMAN_TECHNOLOGY_H */