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