Project:
Wireshark
Code Location:
http://anonsvn.wireshark.org/wireshark/trunk/trunk
/
tap-megaco-common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* tap-rtp-common.h * MEGACO statistics handler functions used by tshark and wireshark * * $Id: tap-megaco-common.h 43536 2012-06-28 22:56:06Z darkjames $ * * Copyright 2008, Ericsson AB * By Balint Reczey <balint.reczey@ericsson.com> * * most functions are copied from ui/gtk/rtp_stream.c and ui/gtk/rtp_analysis.c * Copyright 2003, Alcatel Business Systems * By Lars Ruoff <lars.ruoff@gmx.net> * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef TAP_MEGACO_COMMON_H #define TAP_MEGACO_COMMON_H #define NUM_TIMESTATS 12 #define GCP_CMD_REPLY_CASE \ case GCP_CMD_ADD_REPLY: \ case GCP_CMD_MOVE_REPLY: \ case GCP_CMD_MOD_REPLY: \ case GCP_CMD_SUB_REPLY: \ case GCP_CMD_AUDITCAP_REPLY: \ case GCP_CMD_AUDITVAL_REPLY: \ case GCP_CMD_NOTIFY_REPLY: \ case GCP_CMD_SVCCHG_REPLY: \ case GCP_CMD_TOPOLOGY_REPLY: \ case GCP_CMD_REPLY: #define GCP_CMD_REQ_CASE \ case GCP_CMD_ADD_REQ: \ case GCP_CMD_MOVE_REQ: \ case GCP_CMD_MOD_REQ: \ case GCP_CMD_SUB_REQ: \ case GCP_CMD_AUDITCAP_REQ: \ case GCP_CMD_AUDITVAL_REQ: \ case GCP_CMD_NOTIFY_REQ: \ case GCP_CMD_SVCCHG_REQ: \ case GCP_CMD_TOPOLOGY_REQ: \ case GCP_CMD_CTX_ATTR_AUDIT_REQ: \ case GCP_CMD_OTHER_REQ: /* used to keep track of the statistics for an entire program interface */ typedef struct _megacostat_t { char *filter; timestat_t rtd[NUM_TIMESTATS]; guint32 open_req_num; guint32 disc_rsp_num; guint32 req_dup_num; guint32 rsp_dup_num; #ifdef __GTK_H__ GtkWidget *win; GtkWidget *vbox; GtkWidget *scrolled_window; GtkTreeView *table; #endif /*__GHTK_H__*/ } megacostat_t; static const value_string megaco_message_type[] = { { 0, "ADD "}, { 1, "MOVE"}, { 2, "MDFY"}, { 3, "SUBT"}, { 4, "AUCP"}, { 5, "AUVL"}, { 6, "NTFY"}, { 7, "SVCC"}, { 8, "TOPO"}, { 9, "NONE"}, { 10,"ALL "}, { 0, NULL} }; int megacostat_packet(void *pms, packet_info *pinfo, epan_dissect_t *edt _U_, const void *pmi); #endif /*TAP_MEGACO_COMMON_H*/
