Imported Upstream version 1.24
[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 void connman_technology_tethering_notify(struct connman_technology *technology,
40                                                         bool enabled);
41 int connman_technology_set_regdom(const char *alpha2);
42 void connman_technology_regdom_notify(struct connman_technology *technology,
43                                                         const char *alpha2);
44
45 bool connman_technology_get_wifi_tethering(const char **ssid,
46                                                         const char **psk);
47 bool connman_technology_is_tethering_allowed(enum connman_service_type type);
48
49 struct connman_technology_driver {
50         const char *name;
51         enum connman_service_type type;
52         int priority;
53         int (*probe) (struct connman_technology *technology);
54         void (*remove) (struct connman_technology *technology);
55         void (*add_interface) (struct connman_technology *technology,
56                                                 int index, const char *name,
57                                                         const char *ident);
58         void (*remove_interface) (struct connman_technology *technology,
59                                                                 int index);
60         int (*set_tethering) (struct connman_technology *technology,
61                                 const char *identifier, const char *passphrase,
62                                 const char *bridge, bool enabled);
63         int (*set_regdom) (struct connman_technology *technology,
64                                                 const char *alpha2);
65 };
66
67 int connman_technology_driver_register(struct connman_technology_driver *driver);
68 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
69
70 #ifdef __cplusplus
71 }
72 #endif
73
74 #endif /* __CONNMAN_TECHNOLOGY_H */