session: Move bearer_info 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/service.h>
26 #include <connman/types.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 #define CONNMAN_SESSION_POLICY_PRIORITY_LOW      -100
33 #define CONNMAN_SESSION_POLICY_PRIORITY_DEFAULT     0
34 #define CONNMAN_SESSION_POLICY_PRIORITY_HIGH      100
35
36 struct connman_session;
37
38 struct connman_session_bearer {
39         char *name;
40         connman_bool_t match_all;
41         enum connman_service_type service_type;
42 };
43
44 struct connman_session_policy {
45         const char *name;
46         int priority;
47         int (*get_bool) (struct connman_session *session,
48                                 const char *key, connman_bool_t *val);
49         int (*get_string) (struct connman_session *session,
50                                 const char *key, char **val);
51 };
52
53 int connman_session_policy_register(struct connman_session_policy *config);
54 void connman_session_policy_unregister(struct connman_session_policy *config);
55
56 int connman_session_update_bool(struct connman_session *session, const char *key,
57                                 connman_bool_t val);
58 int connman_session_update_string(struct connman_session *session, const char *key,
59                                         const char *val);
60
61 #ifdef __cplusplus
62 }
63 #endif
64
65 #endif /* __CONNMAN_SESSION_H */