61cc2644bfaec35e1e665a40ff01ae1de28f192f
[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_UNKNOWN  = 0,
47         CONNMAN_SESSION_TYPE_ANY      = 1,
48         CONNMAN_SESSION_TYPE_LOCAL    = 2,
49         CONNMAN_SESSION_TYPE_INTERNET = 3,
50 };
51
52 enum connman_session_id_type {
53         CONNMAN_SESSION_ID_TYPE_UNKNOWN = 0,
54         CONNMAN_SESSION_ID_TYPE_UID     = 1,
55         CONNMAN_SESSION_ID_TYPE_GID     = 2,
56         CONNMAN_SESSION_ID_TYPE_LSM     = 3,
57 };
58
59 struct cb_data {
60         void *cb;
61         void *user_data;
62         void *data;
63 };
64
65 static inline struct cb_data *cb_data_new(void *cb, void *user_data)
66 {
67         struct cb_data *ret;
68
69         ret = g_new0(struct cb_data, 1);
70         ret->cb = cb;
71         ret->user_data = user_data;
72
73         return ret;
74 }
75
76 struct connman_session;
77
78 struct connman_session_config {
79         enum connman_session_id_type id_type;
80         char *id;
81         connman_bool_t priority;
82         enum connman_session_roaming_policy roaming_policy;
83         enum connman_session_type type;
84         connman_bool_t ecall;
85         GSList *allowed_bearers;
86 };
87
88 typedef int (* connman_session_config_func_t) (struct connman_session *session,
89                                         struct connman_session_config *config,
90                                         void *user_data, int err);
91
92 struct connman_session_policy {
93         const char *name;
94         int priority;
95         int (*create)(struct connman_session *session,
96                         connman_session_config_func_t cb,
97                         void *user_data);
98         void (*destroy)(struct connman_session *session);
99 };
100
101 int connman_session_policy_register(struct connman_session_policy *config);
102 void connman_session_policy_unregister(struct connman_session_policy *config);
103
104 int connman_session_config_update(struct connman_session *session);
105 void connman_session_destroy(struct connman_session *session);
106
107 void connman_session_set_default_config(struct connman_session_config *config);
108 struct connman_session_config *connman_session_create_default_config(void);
109
110 enum connman_session_roaming_policy connman_session_parse_roaming_policy(const char *policy);
111 enum connman_session_type connman_session_parse_connection_type(const char *type);
112 int connman_session_parse_bearers(const char *token, GSList **list);
113
114 const char *connman_session_get_owner(struct connman_session *session);
115
116 #ifdef __cplusplus
117 }
118 #endif
119
120 #endif /* __CONNMAN_SESSION_H */