Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
packet-diameter.h
1 /*
2  * packet-diameter.h
3  *
4  * Definitions for Diameter packet disassembly
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 /* Request-Answer Pair */
14 {
15  guint32 hop_by_hop_id;
16  guint32 end_to_end_id;
17  guint32 cmd_code;
18  guint32 result_code;
19  const char* cmd_str;
20  guint32 req_frame; /* frame number in which request was seen */
21  guint32 ans_frame; /* frame number in which answer was seen */
22  nstime_t req_time;
23  nstime_t srt_time;
24  gboolean processing_request; /* TRUE if processing request, FALSE if processing answer. */
26 
27 /* Info needed by AVP sub dissectors */
28 typedef struct _diam_sub_dis_t {
29  guint32 application_id;
30  guint32 feature_list_id;
31  gboolean dis_gouped;
32  guint32 vendor_id;
33  char *avp_str;
35 
36 #define DIAM_APPID_3GPP_CX 16777216
37 #define DIAM_APPID_3GPP_SH 16777217
38 #define DIAM_APPID_3GPP_RX 16777236
39 #define DIAM_APPID_3GPP_GX 16777238
40 #define DIAM_APPID_3GPP_S6A_S6D 16777251
41 #define DIAM_APPID_3GPP_S13 16777252
42 #define DIAM_APPID_3GPP_SLH 16777291
43 #define DIAM_APPID_3GPP_SD 16777303
44 #define DIAM_APPID_3GPP_S7A 16777308
gboolean dis_gouped
Definition: packet-diameter.h:31
Definition: packet-diameter.h:13
Definition: nstime.h:27
Definition: packet-diameter.h:28