aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gtpv2.c
AgeCommit message (Collapse)AuthorFilesLines
2013-07-03expert_add_info_format_text + proto_tree_add_text = ↵Michael Mann1-16/+8
proto_tree_add_expert_format, where applicable. svn path=/trunk/; revision=50377
2013-07-03expert_add_info + proto_tree_add_text = proto_tree_add_expert, where applicableMichael Mann1-64/+20
svn path=/trunk/; revision=50337
2013-06-14From Katrina Zhang via Anders (manually applied by me): dissect node features.Jeff Morriss1-25/+45
From me: remove some tabs and trailing white space. svn path=/trunk/; revision=49922
2013-06-09Batch of filterable expert infos.Michael Mann1-16/+32
svn path=/trunk/; revision=49853
2013-04-22Dissect new element in GTPv2 MM Context.Anders Broman1-7/+29
svn path=/trunk/; revision=48977
2013-04-19Fix GTPv2 MM Context (UMTS Key, Quad, and Quint Decoded) incorrectlyAnders Broman1-16/+7
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8596 svn path=/trunk/; revision=48928
2013-03-18Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8493 :Pascal Quantin1-4/+4
Use proto_tree_add_item instead of proto_tree_add_bits_item to display Used Cipher svn path=/trunk/; revision=48393
2013-03-14from Katrina Zhang:Anders Broman1-27/+148
According to the latest TS29.274 -- adding 4 IE support: H(e)NB Information Reporting[165]; IPv4 Configuration Parameters (IP4CP)[166]; Change to Report Flags[167]; Action Indication[168] -- cause values of IE(Cause) svn path=/trunk/; revision=48301
2013-02-03#if 0 unused hf[] entries & etc.Bill Meier1-1/+3
Note: All (or almost all) unused hf[] entries in non-generated Wireshark dissectors have been #if 0'd (or commented) out. (This applies only to 'static hf_...' vars). A number of (non-generated) dissector files with *missing* hf[] entries still need to be fixed. svn path=/trunk/; revision=47459
2013-01-29Add missing '&hf_gtpv2_bss_con_xid' entry to hf[].Bill Meier1-5/+10
(Found by checkhf) Fix apparent issues with two hf[] entries. Also: Do minor whitespace cleanup. ##Baclport 1.8 svn path=/trunk/; revision=47344
2013-01-27Fix some dead increment warnings found by ClangPascal Quantin1-3/+3
svn path=/trunk/; revision=47319
2013-01-24Fix warning: cast to pointer from integer of different sizePascal Quantin1-4/+5
While we are at it, restore the private data if no private extension dissector is not found (seems to be the right thing to do) svn path=/trunk/; revision=47255
2013-01-24From Katrina Zhang sligtly modified.Anders Broman1-3/+16
- Correct dissection of 8.50 Selected PLMN ID. - Pass Instance to private extension dissectors. svn path=/trunk/; revision=47251
2013-01-23mm_context_used_cipher is 3 bits.Anders Broman1-2/+2
svn path=/trunk/; revision=47230
2013-01-14Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8208 :Pascal Quantin1-8/+8
Display ECI and LAC in decimal and fix highlighting of CGI, SAI, RAI, TAI, ECGI and LAI fields svn path=/trunk/; revision=47071
2012-12-16Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8098 :Pascal Quantin1-2/+4
Incorrect dissection of SAC and RAC in 3GPP ULI AVP svn path=/trunk/; revision=46556
2012-12-11From zhang lei:Anders Broman1-2/+3
Cause、RAB Context、PDU Numbers in packet-gtpv2.c are not dissected correctly. fixed in the patch. The patch did not apply cleanly to trunk, applied by hand. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8079 svn path=/trunk/; revision=46497
2012-12-09Copy paste error - RAC is one byte.Anders Broman1-1/+1
svn path=/trunk/; revision=46485
2012-12-09Fix dissection of Target Identification.Anders Broman1-0/+29
svn path=/trunk/; revision=46484
2012-12-07Correct dissection of RNC ID in two places.Anders Broman1-9/+13
svn path=/trunk/; revision=46443
2012-11-29Use qui_tree.Anders Broman1-1/+1
svn path=/trunk/; revision=46275
2012-11-29- Fix a typo; Authentication Quadruplets not dissected correctly.Anders Broman1-10/+26
- Add RSFP index IE dissection. svn path=/trunk/; revision=46274
2012-11-26Fix several [-Wshadow] warnings;Bill Meier1-757/+758
Also: - Create/use several extended value strings; - Do various whitespace and formatting changes to use a consistent style. svn path=/trunk/; revision=46205
2012-11-23Cell Identity (CI) is 2 octets.Anders Broman1-4/+23
svn path=/trunk/; revision=46152
2012-11-14f_teid_interface_type is 6 bits from Rel 10Anders Broman1-2/+10
svn path=/trunk/; revision=46031
2012-11-06Corrected a (guint32) castStig Bjørlykke1-1/+1
svn path=/trunk/; revision=45944
2012-10-29Add IE/Options dissection.Anders Broman1-18/+49
svn path=/trunk/; revision=45829
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-18Only provide the parameter data in the tvb used when calling subdissector ↵Anders Broman1-2/+4
for private extensions. Add vendor ID to item. Show flags in hex. svn path=/trunk/; revision=44967
2012-09-14From Claude LeFrancois:Anders Broman1-5/+11
Cosmetic changes to GTPv2(Add text to itenms) Minor code changes by me. svn path=/trunk/; revision=44891
2012-09-12From Esa Haapamäki via ↵Pascal Quantin1-2/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7718 : Fix dissection of NAS Uplink and Downlink Count in MM Context IE svn path=/trunk/; revision=44881
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-3/+3
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-07-28Fix inverted dissection of Pre-emption Capability and Pre-emption VulnerabilityPascal Quantin1-2/+2
svn path=/trunk/; revision=44091
2012-07-23Get rid of non-ASCII chars. Also replace tabs with spaces and remove ↵Jeff Morriss1-15/+15
trailing white space. svn path=/trunk/; revision=43940
2012-07-23Fix reversed values for Bearer Context IE decodes Bearer Level Quality of ↵Anders Broman1-2/+16
Service (Bearer QoS) in ARP field the wireshark decoded preemption values. As reported in http://ask.wireshark.org/questions/12907/pre-emption-decoding-on-s11-interface svn path=/trunk/; revision=43930
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-05-21From David Wei:Anders Broman1-19/+45
fix for Higher bitrates than 16 Mbps flag. svn path=/trunk/; revision=42739
2012-05-16From David Wei:Anders Broman1-0/+2
Corrected info column for piggybacked GTPv2 messages. svn path=/trunk/; revision=42652
2012-05-07General minor cleanup including:Bill Meier1-376/+385
- remove unneeded #includes; - use val_to_str_const() as appropriate; - reformat hf[] entries; - reformat long lines; - use #if 0/#endif to coment out code instead of /* ... */; - remove boilerplate comments; - whitespace & indentation svn path=/trunk/; revision=42487
2012-05-07From David Wei:Anders Broman1-4/+9
Fix to PCI and PVI in Bearer QoS and ARP IE:s for GTPv2. svn path=/trunk/; revision=42459
2012-05-02From David Wei:Anders Broman1-6/+63
Change GTP and GTPv2 dissectors for pre-Rel7 UEs that do not support bitrates higher than 16 Mbps. svn path=/trunk/; revision=42381
2012-04-30Fix some clang warnings (dead assignment/increment, assigned value is ↵pascal1-4/+2
garbage or undefined) svn path=/trunk/; revision=42344
2012-04-27From David Wei:Anders Broman1-8/+32
Further additions and fixes to MBMS in GTPv2 and DIAMETER dissectors. svn path=/trunk/; revision=42289
2012-04-25From David Wei:Anders Broman1-22/+71
Significantly improve M3AP dissection and MBMS related GTPv2 dissection. svn path=/trunk/; revision=42228
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=42053
2012-04-12Bugfix and enhancement of MM Context dissection.Anders Broman1-247/+475
svn path=/trunk/; revision=42035
2012-04-11Dissect IE Type = 106 fully.Anders Broman1-27/+308
svn path=/trunk/; revision=42023
2012-04-09Fix a few calls to tvb_bcd_dig_to_ep_str and proto_tree_add_itempascal1-10/+10
svn path=/trunk/; revision=41997
2012-03-15From David Wei:Anders Broman1-1/+1
Fix a typo. svn path=/trunk/; revision=41557
2012-02-14From David Wei:Anders Broman1-6/+12
Fix handling of piggybacked messages. svn path=/trunk/; revision=41029