aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gtp.c
AgeCommit message (Collapse)AuthorFilesLines
2012-02-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40904 f5534014-38df-0310-8fa8-9805f1628bb7
2012-01-24max_ul_ext isn't printed/decoded to the packet details log in GTP protocol ↵etxrab1-3/+4
packet.(Wrong length check) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6761 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40702 f5534014-38df-0310-8fa8-9805f1628bb7
2012-01-19Fix some duplicate display filter names.cmaynard1-16/+16
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40591 f5534014-38df-0310-8fa8-9805f1628bb7
2011-12-03Handle 20 byte GTP' V0 header.etxrab1-330/+359
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40081 f5534014-38df-0310-8fa8-9805f1628bb7
2011-12-02Extend ULI dissection.etxrab1-32/+53
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40069 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-29Update value strings.etxrab1-138/+222
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40035 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-28let packet-gsm_a_gm.c dissect Protocol Configuration Options.etxrab1-65/+27
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40023 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-06Dissect RIM related IEsetxrab1-7/+61
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39740 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-04Get rid of non-ASCII characters in comments.guy1-23/+24
Convert "4-space tabs" to spaces. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39735 f5534014-38df-0310-8fa8-9805f1628bb7
2011-11-04Dissect RIM Routing Address Discriminator and RAN Transparent Container.etxrab1-6/+32
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39734 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.wmeier1-8/+8
Also: remove trailing whitespace for a number of files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39503 f5534014-38df-0310-8fa8-9805f1628bb7
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵wmeier1-1/+1
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-09-21Fix vi "modeline" so it works;wmeier1-1/+1
See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5748 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39074 f5534014-38df-0310-8fa8-9805f1628bb7
2011-08-25- Remove expert Warning not relevant to all GTP variants.etxrab1-15/+5
- use proto_add_item() in a couple of places. - Fix a hf length. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38732 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-04Error: the blurb for field "Extension header" ("gtp.ext_hdr") matches the ↵etxrab1-2/+2
field name in packet-gtp.c git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37885 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-03From Martin Isaksson:etxrab1-9/+85
PDCP PDU number extension header support. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37880 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-22Add a dissector table for CDR:setxrab1-1/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37751 f5534014-38df-0310-8fa8-9805f1628bb7
2011-06-02Remove extra space at end of IMSI.etxrab1-9/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37519 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-20Use [hi|lo]_nibble macros, leave room in str[] for invalid BCD digits to becmaynard1-31/+26
displayed as blanks. Since imsi_to_str() and ip_to_str() do the same thing, just have imsi_to_str() call ip_to_str() rather than having two different implementations of the same thing. Use a BCD2CHAR macro instead of doing a table lookup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36740 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-20From Vladimir Kazansky via bug 5849: Fix msisdn_to_str() so it converts all BCDcmaynard1-1/+1
digits and not just 1. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36727 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-18Fix Dead Store (Dead assignement/Dead increment) Warning found by Clangalagoutte1-8/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36703 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-12Fix a few cases of proto_item_add_subtree() using the wrong tree: Coverity ↵wmeier1-29/+29
916-918; Also: Fix some indentation: e.g., "4 space tabs". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36585 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-04Change the signature of elem_fcn():ns to include pinfo.etxrab1-14/+14
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36443 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-13../../../epan/dissectors/packet-gtp.c:5607: error: unused variable ‘length’etxrab1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36182 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-12Add sub dissection of AVP MBMS Service Area.etxrab1-19/+30
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36181 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-06Prepare to remove old bssgp code by changing exports.etxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36142 f5534014-38df-0310-8fa8-9805f1628bb7
2011-03-03Make the _to_str() functions in here take a pointer to a TVB and an offsetmorriss1-34/+29
rather than (generally) a pointer into the TVB. Replace some tabs with spaces (for consistency). Remove a couple unnecessary includes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36123 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-28Add private extensions under the right tree.etxrab1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36089 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-26- Add a dissector table for Private Extensions.etxrab1-105/+112
- Use ENC_BIG_ENDIAN. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36075 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-23From Alexis La Goutte:etxrab1-1/+0
Cleanup packet-ipv6.h and dependency. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5713 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36031 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-09Register ett_gtp_bcm.morriss1-12/+13
Replace some tabs with spaces. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35890 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Use gprscdr to dissect CDRs.etxrab1-15/+15
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35763 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02A bit more indentation cleanupwmeier1-30/+30
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35749 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-02Get rid of unused variable warnings.guy1-89/+91
Clean up indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35746 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-01Dissect a bit more of data records.etxrab1-15/+101
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35744 f5534014-38df-0310-8fa8-9805f1628bb7
2011-02-01 Use {'0', ...} type initializer for fixed length character arrays.wmeier1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35741 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Replace some blurbs with NULLmorriss1-13/+13
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35728 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Add dissection of Evolved Allocation/Retention Priority I IE.etxrab1-8/+98
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35723 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-30From Grzegorz Szczytowski:etxrab1-10/+29
Add Bearer Control Mode selection support in gtpv1 dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5634 Sligtly reworked by me: - prefix names with gtp - Use proto_tree_add_item() - remove ref to specific protocol version, as it's probably a mix. - Changed the update to the AUTHORS file. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35699 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-20Fix the dead initialization warnings found by clang's static analysissfisher1-1/+1
("Value stored to 'xxx' during its initialization is never read") git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35598 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-20Fix typosetxrab1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35597 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-20Update a comment.etxrab1-0/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35596 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-20In MM context the container contains IE:s not a completeetxrab1-10/+31
DTAP message. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5598 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35595 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-27Add dissection of Radio Priority LCS.etxrab1-3/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35276 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-17/+17
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-14Minor cleanup:wmeier1-67/+67
- Initialize a few static global variables; - Remove two unnecessary calls to g_hash_table_foreach_remove; - Do whitespace cleanup and use consistent indentation; - Fix a few typos and fix up several comments. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35183 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-15Fill value_strings.etxrab1-71/+175
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34875 f5534014-38df-0310-8fa8-9805f1628bb7
2010-11-01Use value_string_ext fcns to access various value_string arrays.wmeier1-101/+110
Also: use value_string_const() instead of value_string() where apropriate; minor reformatting & whitespace cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34745 f5534014-38df-0310-8fa8-9805f1628bb7
2010-09-24(Refining the regexp...) Replace blurbs that match the name (case ↵morriss1-9/+9
insensitive) with NULL. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34230 f5534014-38df-0310-8fa8-9805f1628bb7