aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssgp.c
AgeCommit message (Collapse)AuthorFilesLines
2013-02-11Fix bit_offset.Anders Broman1-4/+4
svn path=/trunk/; revision=47637
2013-01-22Try to fix dissection of GSM protocol family broken by r47209.Pascal Quantin1-58/+58
Using val_to_str seemed to be a good idea, but most value_string arrays were not properly filled or were using hacks. (I hope I got everything right...) svn path=/trunk/; revision=47218
2012-11-25Fix several [-Wshadow] warnings;Bill Meier1-14/+14
Also: Do some minor whitespace and formatting changes. -This line, and those below, will be ignored-- M dissectors/packet-bootp.c M dissectors/packet-bssgp.c M dissectors/packet-babel.c svn path=/trunk/; revision=46191
2012-11-21fixMartin Kaiser1-1/+1
/home/wireshark/builders/trunk/ubuntu1204x64/build/epan/dissectors/packet-bssgp.c: In function de_bssgp_son_transfer_app_id: /home/wireshark/builders/trunk/ubuntu1204x64/build/epan/dissectors/packet-bssgp.c:3173:12: error: variable next_tvb set but not used [-Werror=unused-but-set-variable] cc1: all warnings being treated as errors svn path=/trunk/; revision=46125
2012-11-21Clean up white space (no tabs).Guy Harris1-3/+4
svn path=/trunk/; revision=46120
2012-11-21The previous change means the "len" argument is now being used.Guy Harris1-3/+1
svn path=/trunk/; revision=46113
2012-11-21From l.wachowski:Anders Broman1-5/+9
Allign the tables for dissection. From me try to fix the dissection of SONtransferApplicationIdentity_PDU. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8008 svn path=/trunk/; revision=46111
2012-11-19From l.wachowski:Anders Broman1-4/+2
- In de_bssgp_pdu_in_error() use current_offset isof 0. - in function de_bssgp_ran_inf_error_rim_cont. Error rim container doesn't have field rim sequence number. This field exists in the rest of containers but not in this one. So I have removed this field. In this function we have field pdu in error and this field is mandatory, not optional https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8000 svn path=/trunk/; revision=46081
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-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-10/+10
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-05-21Display Element ID in hexadecimal (like in 3GPP specs)pascal1-1/+1
Display EPS bearer ID in decimal svn path=/trunk/; revision=42755
2012-03-10Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-3/+1
svn path=/trunk/; revision=41466
2012-02-16Use tce correct IE idAnders Broman1-4/+9
svn path=/trunk/; revision=41043
2012-01-19Fix some duplicate display filter names.Chris Maynard1-6/+6
svn path=/trunk/; revision=40586
2011-12-08Try to get the container stuff right...Anders Broman1-4/+2
svn path=/trunk/; revision=40119
2011-11-06Dissect RIM related IEsAnders Broman1-1/+1
svn path=/trunk/; revision=39740
2011-10-27Fix proto_tree_add_item( encoding args;Bill Meier1-4207/+4214
Do whitespace cleanup (for a few files). svn path=/trunk/; revision=39640
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-5/+5
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 svn path=/trunk/; revision=39260
2011-04-26From Yaniv Kaul:Anders Broman1-5/+1
Fix 'set but not used' errors that GCC 4.6 emits. svn path=/trunk/; revision=36874
2011-04-05Don't assign to a proto_item * if the value won't be used: Coverity 858;Bill Meier1-82/+80
Fix two cases where items appear to be added to the wrong tree: Coverioty 856 & 857. Also: remove some unneeded #includes& do some whitespace cleanup. svn path=/trunk/; revision=36473
2011-04-04Get rid of gsm_a_dtap_pinfo.Anders Broman1-2/+0
svn path=/trunk/; revision=36444
2011-04-04Change the signature of elem_fcn():ns to include pinfo.Anders Broman1-117/+117
svn path=/trunk/; revision=36443
2011-04-04Change the msg_fcn() signature to include pinfo.Anders Broman1-200/+200
svn path=/trunk/; revision=36441
2011-03-27Added some missing breaks.Stig Bjørlykke1-0/+3
Coverity 443 & 444. svn path=/trunk/; revision=36361
2011-03-15Add dissection ofAnders Broman1-13/+337
- MBMS-SESSION-STOP-REQUEST - MBMS-SESSION-STOP-RESPONSE - MBMS-SESSION-UPDATE-REQUEST - MBMS-SESSION-UPDATE-RESPONSE - PS-HANDOVER-COMPLETE - PS-HANDOVER-CANCEL - PS-HANDOVER-COMPLETE-ACK svn path=/trunk/; revision=36195
2011-03-14Add dissection ofAnders Broman1-28/+324
- MBMS-SESSION-START-REQUEST - MBMS-SESSION-START-RESPONSE svn path=/trunk/; revision=36186
2011-03-07Remove more obsolete code.Anders Broman1-92/+0
svn path=/trunk/; revision=36154
2011-03-07Fix packet-bssgp.c:125: warning: 'hf_bssgp_tmsi_ptmsi' defined but not usedAnders Broman1-1/+0
svn path=/trunk/; revision=36153
2011-03-07Remove the old code.Anders Broman1-5909/+80
svn path=/trunk/; revision=36152
2011-03-06Prepare to remove old bssgp code by changing exports.Anders Broman1-3/+15
svn path=/trunk/; revision=36142
2011-03-04All messages converted to the "GSM style" dissection.Anders Broman1-88/+681
svn path=/trunk/; revision=36137
2011-02-22From Pascal Quantin:Anders Broman1-4/+4
[3GPP protocols] Prettify the display of Mandatory Value information elements https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5711 svn path=/trunk/; revision=36026
2011-02-18#if out some (currently) unused functions.Jeff Morriss1-0/+6
svn path=/trunk/; revision=36000
2011-02-18Add more MSG dissection.Anders Broman1-190/+779
svn path=/trunk/; revision=35998
2011-02-17Fix some Visual C++ analysis warnings.Gerald Combs1-119/+119
svn path=/trunk/; revision=35988
2011-01-31packet-bssgp.c:10020: warning: 'bssgp_perform_loc_response' defined but not usedAnders Broman1-2/+3
svn path=/trunk/; revision=35738
2011-01-31More IE dissection.Anders Broman1-6/+66
svn path=/trunk/; revision=35736
2011-01-31Dissect more IE's in PERFORM-LOCATION-REQUEST.Anders Broman1-11/+62
svn path=/trunk/; revision=35721
2011-01-31Clean up white space.Guy Harris1-118/+128
Use the bssgp_perform_loc_request() routine for PERFORM-LOCATION-REQUEST (fixes a "defined, but not used" warning). svn path=/trunk/; revision=35714
2011-01-30Add more MSG dissection.Anders Broman1-21/+157
svn path=/trunk/; revision=35707
2011-01-27Fix a typo and prettify some printouts.Anders Broman1-2/+23
svn path=/trunk/; revision=35677
2011-01-26Fix compilation errorsStephen Fisher1-3/+3
svn path=/trunk/; revision=35673
2011-01-26Dissect PS-HANDOVER-REQUEST.Anders Broman1-14/+149
svn path=/trunk/; revision=35666
2011-01-25Fix gcc compilation.Gerald Combs1-2/+2
svn path=/trunk/; revision=35650
2011-01-25Switch more messages over to the "gsm dissector style".Anders Broman1-240/+3481
svn path=/trunk/; revision=35649
2011-01-19packet-bssgp.c:6916: warning: 'bssgp_tree' may be used uninitialized in this ↵Anders Broman1-1/+1
function svn path=/trunk/; revision=35581
2011-01-19Cleaned up splitt between old and new dissection style.Anders Broman1-106/+442
A lot of conversion still needed. svn path=/trunk/; revision=35580
2011-01-17(Until Anders comletes work): use #if 0 instead of //; init a variable;Bill Meier1-3/+5
svn path=/trunk/; revision=35571
2011-01-16Move assignment of 'oct' outside of if(tree)--it is used outside of the if ↵Jeff Morriss1-1/+1
block. svn path=/trunk/; revision=35550