/* packet-e212.h * E212 tables * Copyright 2006, Anders Broman * * Wireshark - Network traffic analyzer * By Gerald Combs * 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 __PACKET_E212_H__ #define __PACKET_E212_H__ #include #include "ws_symbol_export.h" extern value_string_ext E212_codes_ext; typedef enum { E212_NONE, E212_LAI, E212_RAI, E212_SAI } e212_number_type_t; gchar* dissect_e212_mcc_mnc_wmem_packet_str(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, e212_number_type_t number_type, gboolean little_endian); WS_DLL_PUBLIC int dissect_e212_mcc_mnc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, e212_number_type_t number_type, gboolean little_endian); WS_DLL_PUBLIC int dissect_e212_mcc_mnc_in_address(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset); /** * * Given a tvbuff, an offset into the tvbuff, and a length that starts * at that offset, fetch BCD encoded digits from a tvbuff starting from either * the low or high half byte, formatting the digits according to a digit * set of 0-9 returning "?" for overdecadic digits and then * create a string in the tree and a corresponding filter * * Note a tvbuff content of 0xf is considered a 'filler' and will end the * conversion. * A wmem allocated string will be returned. */ WS_DLL_PUBLIC const gchar * dissect_e212_imsi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int length, gboolean skip_first); /** * * Given a tvbuff, an offset into the tvbuff, and a length that starts * at that offset, fetch UTF8-encoded digits from the tvbuff and then * create a string in the tree and a corresponding filter. * * The wmem allocated string will be returned. */ WS_DLL_PUBLIC const gchar * dissect_e212_utf8_imsi(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int length); #endif /* __PACKET_E212_H__ */ /* * Editor modelines - http://www.wireshark.org/tools/modelines.html * * Local variables: * c-basic-offset: 4 * tab-width: 8 * indent-tabs-mode: nil * End: * * vi: set shiftwidth=4 tabstop=8 expandtab: * :indentSize=4:tabSize=8:noTabs=true: */