session: Allow plugin access to connman_session_allowed_bearers_any
[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 enum connman_session_roaming_policy {
37         CONNMAN_SESSION_ROAMING_POLICY_UNKNOWN          = 0,
38         CONNMAN_SESSION_ROAMING_POLICY_DEFAULT          = 1,
39         CONNMAN_SESSION_ROAMING_POLICY_ALWAYS           = 2,
40         CONNMAN_SESSION_ROAMING_POLICY_FORBIDDEN        = 3,
41         CONNMAN_SESSION_ROAMING_POLICY_NATIONAL         = 4,
42         CONNMAN_SESSION_ROAMING_POLICY_INTERNATIONAL    = 5,
43 };
44
45 enum connman_session_type {
46         CONNMAN_SESSION_TYPE_ANY      = 0,
47         CONNMAN_SESSION_TYPE_LOCAL    = 1,
48         CONNMAN_SESSION_TYPE_INTERNET = 2,
49 };
50
51 struct connman_session;
52
53 struct connman_session_bearer {
54         char *name;
55         connman_bool_t match_all;
56         enum connman_service_type service_type;
57 };
58
59 struct connman_session_config {
60         connman_bool_t priority;
61         enum connman_session_roaming_policy roaming_policy;
62         enum connman_session_type type;
63         connman_bool_t ecall;
64         GSList *allowed_bearers;
65 };
66
67 struct connman_session_policy {
68         const char *name;
69         int priority;
70         int (*get_bool) (struct connman_session *session,
71                                 const char *key, connman_bool_t *val);
72         int (*get_string) (struct connman_session *session,
73                                 const char *key, char **val);
74 };
75
76 int connman_session_policy_register(struct connman_session_policy *config);
77 void connman_session_policy_unregister(struct connman_session_policy *config);
78
79 GSList *connman_session_allowed_bearers_any(void);
80
81 int connman_session_update_bool(struct connman_session *session, const char *key,
82                                 connman_bool_t val);
83 int connman_session_update_string(struct connman_session *session, const char *key,
84                                         const char *val);
85
86 #ifdef __cplusplus
87 }
88 #endif
89
90 #endif /* __CONNMAN_SESSION_H */