session: Add plugin priority
[platform/upstream/connman.git] / include / session.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2012  BMW Car IT GbmH. 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_SESSION_H
23 #define __CONNMAN_SESSION_H
24
25 #include <connman/types.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 #define CONNMAN_SESSION_POLICY_PRIORITY_LOW      -100
32 #define CONNMAN_SESSION_POLICY_PRIORITY_DEFAULT     0
33 #define CONNMAN_SESSION_POLICY_PRIORITY_HIGH      100
34
35 /*
36  * The session are identified through the pid is only a temporary solution
37  */
38 struct connman_session_policy {
39         const char *name;
40         int priority;
41         int (*get_bool) (const char *id, const char *key, connman_bool_t *val);
42         int (*get_string) (const char *id, const char *key, char **val);
43 };
44
45 int connman_session_policy_register(struct connman_session_policy *config);
46 void connman_session_policy_unregister(struct connman_session_policy *config);
47
48 int connman_session_update_bool(const char *id, const char *key,
49                                 connman_bool_t val);
50 int connman_session_update_string(const char *id, const char *key,
51                                         const char *val);
52
53 #ifdef __cplusplus
54 }
55 #endif
56
57 #endif /* __CONNMAN_SESSION_H */