technology: return already enabled when tethering is enabled
[framework/connectivity/connman.git] / include / technology.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2012  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                                                         connman_bool_t 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 struct connman_technology_driver {
46         const char *name;
47         enum connman_service_type type;
48         int priority;
49         int (*probe) (struct connman_technology *technology);
50         void (*remove) (struct connman_technology *technology);
51         void (*add_interface) (struct connman_technology *technology,
52                                                 int index, const char *name,
53                                                         const char *ident);
54         void (*remove_interface) (struct connman_technology *technology,
55                                                                 int index);
56         int (*set_tethering) (struct connman_technology *technology,
57                                 const char *identifier, const char *passphrase,
58                                 const char *bridge, connman_bool_t enabled);
59         int (*set_regdom) (struct connman_technology *technology,
60                                                 const char *alpha2);
61 };
62
63 int connman_technology_driver_register(struct connman_technology_driver *driver);
64 void connman_technology_driver_unregister(struct connman_technology_driver *driver);
65
66 #ifdef __cplusplus
67 }
68 #endif
69
70 #endif /* __CONNMAN_TECHNOLOGY_H */