Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-e164.h
1 /* packet-e164.h
2  * E164 tables
3  * Copyright 2004, Anders Broman <anders.broman@ericsson.com>
4  *
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 #ifndef __PACKET_E164_H__
13 #define __PACKET_E164_H__
14 
15 #include <epan/value_string.h>
16 #include "ws_symbol_export.h"
17 
18 extern const value_string E164_country_code_value[];
19 extern const value_string E164_ISO3166_country_code_short_value[];
20 extern value_string_ext E164_ISO3166_country_code_short_value_ext;
21 extern const value_string E164_International_Networks_vals[];
22 
23 #define E164_NA_INTERNATIONAL_NUMBER 4
24 
25 typedef enum {
26  NONE,
27  CALLING_PARTY_NUMBER,
28  CALLED_PARTY_NUMBER
29 } e164_number_type_t;
30 
31 typedef struct {
32  e164_number_type_t e164_number_type;
33  guint nature_of_address;
34  const char *E164_number_str; /* E164 number string */
35  guint E164_number_length; /* Length of the E164_number string */
36 } e164_info_t;
37 
38 typedef enum {
39  E164_ENC_BINARY,
40  E164_ENC_BCD,
41  E164_ENC_UTF8
42 } e164_encoding_t;
43 
44 extern void dissect_e164_number(tvbuff_t *tvb, proto_tree *tree, int offset, int length, e164_info_t e164_info);
45 WS_DLL_PUBLIC void dissect_e164_cc(tvbuff_t *tvb, proto_tree *tree, int offset, e164_encoding_t encoding);
46 WS_DLL_PUBLIC const gchar * dissect_e164_msisdn(tvbuff_t *tvb, proto_tree *tree, int offset, int length, e164_encoding_t encoding);
47 WS_DLL_PUBLIC const gchar * dissect_e164_isdn(tvbuff_t *tvb, proto_tree *tree, int offset, int length, e164_encoding_t encoding);
48 #endif
Definition: proto.h:904
Definition: value_string.h:170
Definition: value_string.h:26
Definition: packet-e164.h:31
Definition: tvbuff-int.h:35