Remove dereference after null check and dead code
[platform/core/connectivity/stc-manager.git] / include / stc-restriction.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __STC_RESTRICTION_H__
18 #define __STC_RESTRICTION_H__
19
20 #include <glib.h>
21 #include "stc-manager.h"
22 #include "stc-manager-gdbus.h"
23 #include "table-restrictions.h"
24 #include "transmission.h"
25
26 /*****************************************************************************
27  * Macros and Typedefs
28  *****************************************************************************/
29 typedef struct {
30         stc_app_state_e rs_type;
31         stc_iface_type_e iftype;
32         int64_t send_limit;
33         int64_t rcv_limit;
34         int64_t snd_warning_limit;
35         int64_t rcv_warning_limit;
36         stc_roaming_type_e roaming;
37         char *ifname;
38         char *subscriber_id;
39 } stc_restriction_s;
40
41 /*****************************************************************************
42  * Functions Declaration
43  *****************************************************************************/
44
45 gboolean handle_restriction_set(StcRestriction *object,
46                                 GDBusMethodInvocation *invocation,
47                                 GVariant *parameters,
48                                 void *user_data);
49
50 gboolean handle_restriction_unset(StcRestriction *object,
51                                    GDBusMethodInvocation *invocation,
52                                    GVariant *parameters,
53                                    void *user_data);
54
55 gboolean handle_restriction_get(StcRestriction *object,
56                                 GDBusMethodInvocation *invocation,
57                                 const gchar *app_id,
58                                 void *user_data);
59
60 gboolean handle_restriction_get_all(StcRestriction *object,
61                                     GDBusMethodInvocation *invocation,
62                                     void *user_data);
63
64 gboolean handle_restriction_get_type(StcRestriction *object,
65                                       GDBusMethodInvocation *invocation,
66                                       const gchar *app_id,
67                                       int iftype,
68                                       void *user_data);
69
70 #endif /* __STC_RESTRICTION_H__ */