aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-diameter_3gpp.c
AgeCommit message (Collapse)AuthorFilesLines
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵wmeier1-5/+5
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39426 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵wmeier1-2/+2
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39260 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-08Remove unneeded #includes: proto.h,tvbuff.h,value_string.h,stdlib.h,...wmeier1-3/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38413 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-27Use tvb_length when adding MSISDN.etxrab1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38226 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-20Prettify som 3GPP AVP:setxrab1-1/+67
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37326 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-19Fix a typo.etxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37294 f5534014-38df-0310-8fa8-9805f1628bb7
2011-05-19Subdissect 2 3GPP AVP:s that are actually text.etxrab1-78/+147
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37292 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-06From Johan Wåhl:etxrab1-0/+61
Add dissection of feature list flags. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36497 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-04Change the signature of elem_fcn():ns to include pinfo.etxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36443 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-12Add sub dissection of AVP MBMS Service Area.etxrab1-4/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36181 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-14/+14
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-16Fix a comment.etxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35198 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-16Dissect AVP Code: 606 User-Data if it's xml.etxrab1-1/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35197 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-20From KATAOKA Toshihiro:etxrab1-4/+544
3GPP Diameter S6a flags. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4893 Modified to use tfs_set_notset. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33257 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-08From Tamás Regõs:etxrab1-0/+5
Change dissection of User Location Info (ULI) to show the spare bits in the protocol tree and don't show ECI as a bitfield. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33157 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-01Dissect 3GPP AVP 5 3GPP-GPRS Negotiated QoS profile.etxrab1-2/+10
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32622 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-06#include <string.h> not needed.wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32410 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-05From Toshihiro KATAOKA:etxrab1-1/+12
The decoded MSISDN AVP in 3GPP diameter AVP and the decoded MSISDN IE in 3GPP GTPv2 IE are not correct. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4638 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32377 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-03Remove unneeded #include <stdio.h>wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32367 f5534014-38df-0310-8fa8-9805f1628bb7
2010-03-20Fix for Bug 4588:dimeg1-1/+1
RANAP and friends want the MNC encoded in big endian form. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32257 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-19Remove an unused variable. Fixup whitespace.gerald1-19/+18
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31567 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-19Remove an include.etxrab1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31566 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-19If user data is xml display it.etxrab1-0/+40
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31565 f5534014-38df-0310-8fa8-9805f1628bb7
2009-11-27Expert info when E.212 MCC/MNC contain non-decimal digitsdimeg1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31102 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-8/+8
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-15Diameter.xml: Add s6a application contex + Spec refetxrab1-1/+30
Add subdisecton of 3GPP AVP 701 MSISDN using code in gsm map. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27240 f5534014-38df-0310-8fa8-9805f1628bb7
2008-08-04First step to split the gsm_a dissector into several smaller ones ( done by ↵etxrab1-1/+1
Neil Piercy) rename the "old" one to gsm_a_common. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25915 f5534014-38df-0310-8fa8-9805f1628bb7
2008-04-14From Jim Young:jake1-2/+1
Within the packet-diameter_3gpp.c module, the call to proto_register_protocol() comes AFTER the proto_register_field_array() call. While the delayed call to proto_register_protocol() does not appear to impair the use of the display filters, it DOES effect the generation of the wireshark-filter man page. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25014 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29Add missing 'static int' for dissect_diameter_3gpp_tmgi(...)wmeier1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24223 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29Dissect 3GPP AVP Code: 900 TMGIetxrab1-3/+51
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24222 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-27Make use of an unused value.stig1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24213 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-27Add the forgotten file.etxrab1-0/+122
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24212 f5534014-38df-0310-8fa8-9805f1628bb7