technology: return already enabled when tethering is enabled
[framework/connectivity/connman.git] / include / notifier.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_NOTIFIER_H
23 #define __CONNMAN_NOTIFIER_H
24
25 #include <connman/service.h>
26 #include <connman/ipconfig.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 /**
33  * SECTION:notifier
34  * @title: Notifier premitives
35  * @short_description: Functions for registering notifier modules
36  */
37
38 #define CONNMAN_NOTIFIER_PRIORITY_LOW      -100
39 #define CONNMAN_NOTIFIER_PRIORITY_DEFAULT     0
40 #define CONNMAN_NOTIFIER_PRIORITY_HIGH      100
41
42 struct connman_notifier {
43         const char *name;
44         int priority;
45         void (*default_changed) (struct connman_service *service);
46         void (*service_add) (struct connman_service *service,
47                                 const char *name);
48         void (*service_remove) (struct connman_service *service);
49         void (*service_enabled) (enum connman_service_type type,
50                                                 connman_bool_t enabled);
51         void (*offline_mode) (connman_bool_t enabled);
52         void (*proxy_changed) (struct connman_service *service);
53         void (*service_state_changed) (struct connman_service *service,
54                                         enum connman_service_state state);
55         void (*ipconfig_changed) (struct connman_service *service,
56                                         struct connman_ipconfig *ipconfig);
57         void (*idle_state) (connman_bool_t idle);
58 };
59
60 int connman_notifier_register(struct connman_notifier *notifier);
61 void connman_notifier_unregister(struct connman_notifier *notifier);
62
63 #ifdef __cplusplus
64 }
65 #endif
66
67 #endif /* __CONNMAN_NOTIFIER_H */