session: Move struct connman_session to session.h
[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 struct connman_session;
36
37 /*
38  * The session are identified through the pid is only a temporary solution
39  */
40 struct connman_session_policy {
41         const char *name;
42         int priority;
43         int (*get_bool) (const char *id, const char *key, connman_bool_t *val);
44         int (*get_string) (const char *id, const char *key, char **val);
45 };
46
47 int connman_session_policy_register(struct connman_session_policy *config);
48 void connman_session_policy_unregister(struct connman_session_policy *config);
49
50 int connman_session_update_bool(const char *id, const char *key,
51                                 connman_bool_t val);
52 int connman_session_update_string(const char *id, const char *key,
53                                         const char *val);
54
55 #ifdef __cplusplus
56 }
57 #endif
58
59 #endif /* __CONNMAN_SESSION_H */