49c310ad3ae98e1ed41b82ca103d90acfe509d74
[platform/core/connectivity/stc-manager.git] / include / stc-pcap.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_PCAP_H__
18 #define __STC_PCAP_H__
19
20 #include <glib.h>
21 #include "stc-manager.h"
22 #include "stc-manager-gdbus.h"
23
24 /*****************************************************************************
25  * Macros and Typedefs
26  *****************************************************************************/
27
28 #define STC_PCAP_IFNAME             "ifname"
29 #define STC_PCAP_NFLOG_GROUP        "nflog_group"
30
31 typedef struct {
32     char *ifname;
33     int nflog_group;
34 } stc_pcap_s;
35
36 /*****************************************************************************
37  * Functions Declaration
38  *****************************************************************************/
39
40 gboolean handle_pcap_start(StcPcap *object,
41                                 GDBusMethodInvocation *invocation,
42                                 GVariant *parameters,
43                                 void *user_data);
44
45 gboolean handle_pcap_stop(StcPcap *object,
46                                 GDBusMethodInvocation *invocation,
47                                 GVariant *parameters,
48                                 void *user_data);
49
50 gboolean handle_pcap_get_all(StcPcap *object,
51                                 GDBusMethodInvocation *invocation,
52                                 void *user_data);
53
54 #endif /* __STC_PCAP_H__ */