aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_a_bssmap.c
AgeCommit message (Collapse)AuthorFilesLines
2012-08-01Follow-up of r44162: clean more filtersPascal Quantin1-13/+7
svn path=/trunk/; revision=44187
2012-07-31Updated GSM dissectors display filters per checkfiltername.plMichael Mann1-22/+22
Tried to provide consistency with GSM dissector (protocol) names, even if the filenames now don't match the dissector name. svn path=/trunk/; revision=44162
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-06-20- In INTERNAL HANDOVER COMMAND Circuit Identity Code is C(Coded optional in WS)Anders Broman1-2/+36
- be_speech_codec ( 3.2.2.104 Speech Codec) did not cover all codecs. svn path=/trunk/; revision=43401
2012-06-12Upgrade GSM BSSMAP dissection to Release 9 (V9.8.0)Pascal Quantin1-63/+529
svn path=/trunk/; revision=43227
2012-06-11From Alexander via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7361 :Pascal Quantin1-1/+3
Add BSS supported Codec list dissection to Assigment Complete message svn path=/trunk/; revision=43215
2012-06-11From Alexander via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7360 :Pascal Quantin1-2/+2
Service handover IE is not correctly dissected svn path=/trunk/; revision=43214
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-05-15Remove unneeded #includes (stdlib, stdio, ctypes, time);Bill Meier1-1/+1
In a few cases: do some whitespace, indentation cleanup & reformatting. svn path=/trunk/; revision=42632
2012-05-07General minor cleanup including:Bill Meier1-239/+253
- 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-04-30Fix a few clang warningspascal1-11/+5
svn path=/trunk/; revision=42343
2012-04-19Set up RTP conversations from BSS MAP.Anders Broman1-1/+35
svn path=/trunk/; revision=42142
2012-04-04Avoid false-positive CID 621: if str is non-NULL, idx should be positiveJeff Morriss1-15/+18
(so idx won't be negative when used in the else statement). To avoid this false positive, add a check if idx is negative to the if(str) check. Also remove some trailing commas. svn path=/trunk/; revision=41925
2012-03-08Fix dissecton of speech codec listAnders Broman1-2/+27
svn path=/trunk/; revision=41429
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-2/+2
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). svn path=/trunk/; revision=39426
2011-10-10 Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-1/+1
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_BOOLEAN FT_IPv4 FT_EUI64 FT_GUID FT_UINT_STRING Also: For type FT_ITv6 use ENC_NA. (This was missed in SVN #39260) svn path=/trunk/; revision=39328
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-2/+2
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39288
2011-07-22Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.Bill Meier1-6/+0
svn path=/trunk/; revision=38170
2011-05-18Finish removing tabs and fix up some indentation.Jeff Morriss1-323/+324
Add a break after decoding CSData Codec Type. svn path=/trunk/; revision=37247
2011-05-18Add a default (else) case in the default case for cause values to avoid passingJeff Morriss1-5/+15
a NULL string pointer to format routines. While we're there, update the cause list from 48.008 v10.1.0. svn path=/trunk/; revision=37244
2011-04-04Change the signature of elem_fcn():ns to include pinfo.Anders Broman1-100/+100
svn path=/trunk/; revision=36443
2011-04-04Change the msg_fcn() signature to include pinfo.Anders Broman1-81/+81
svn path=/trunk/; revision=36441
2011-03-23CID 453,454Anders Broman1-0/+1
Missing break svn path=/trunk/; revision=36277
2011-03-06Prepare to remove old bssgp code by changing exports.Anders Broman1-10/+1
svn path=/trunk/; revision=36142
2011-02-13Advance offsets in the "default" branch to avoid infinite loops.Anders Broman1-0/+6
** (tshark.exe:4392): WARNING **: Dissector bug, protocol GSM BSSMAP, in packet 194520: More than 1000000 items in the tree -- possible infinite loop https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5688 svn path=/trunk/; revision=35939
2011-02-12Update dissection of Anders Broman1-25/+112
3.2.2.103 Speech Codec List 3.2.2.104 Speech Codec to 3GPP TS 48.008 version 9.4.0 Release 9. svn path=/trunk/; revision=35935
2011-02-08- Use ENC_BIG_ENDIAN.Anders Broman1-428/+428
- GSM_A_PDU_TYPE_BSSMAP. svn path=/trunk/; revision=35879
2011-01-31Dissect more IE's in PERFORM-LOCATION-REQUEST.Anders Broman1-2/+52
svn path=/trunk/; revision=35721
2011-01-27Removed duplicate hf_gsm_a_bssmap_lsa_only registry.Stig Bjørlykke1-5/+0
svn path=/trunk/; revision=35676
2011-01-26Dissect PS-HANDOVER-REQUEST.Anders Broman1-20/+37
svn path=/trunk/; revision=35666
2011-01-11Use value_string_ext and friends.Anders Broman1-2/+2
svn path=/trunk/; revision=35484
2011-01-11Complement toAnders Broman1-11/+76
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=35477 svn path=/trunk/; revision=35483
2011-01-08Try to fix:Anders Broman1-1/+1
packet-gtpv2.c:2648: warning: return type defaults to 'int' packet-gtpv2.c: In function 'dissect_udp_s_port_nr': packet-gtpv2.c:2690: warning: unused parameter 'length' packet-gtpv2.c: In function 'dissect_gtpv2_fq_csid': packet-gtpv2.c:2845: warning: unused parameter 'length' packet-gtpv2.c: In function 'dissect_gtpv2_emlpp_pri': packet-gtpv2.c:2927: warning: implicit declaration of function 'be_emlpp_prio' packet-gtpv2.c: At top level: packet-gtpv2.c:3056: warning: initialization from incompatible pointer type svn path=/trunk/; revision=35431
2011-01-05Remove a duplicate return.Jeff Morriss1-4/+2
svn path=/trunk/; revision=35389
2010-12-27Fix the Message numbering.Anders Broman1-33/+49
svn path=/trunk/; revision=35271
2010-12-26Correct:Anders Broman1-8/+8
RESET IP RESOURCE RESET IP RESOURCE ACKNOWLEDGE Tags svn path=/trunk/; revision=35267
2010-12-26Start of a SGSAP (TS 29.118) dissector for LTE.Anders Broman1-83/+83
svn path=/trunk/; revision=35266
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
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.) svn path=/trunk/; revision=35224
2010-11-22From Mike Morrin:Anders Broman1-16/+26
In bssmap, track L3 handover target (GSM or UMTS) between PDUs https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5294 svn path=/trunk/; revision=35009
2010-11-09Use value_string_ext for gsm_a_rr_rxlev_vals.Anders Broman1-1/+1
svn path=/trunk/; revision=34818
2010-08-27Support for eMLPP Priority IE in BSSMAPGerasimos Dimitriadis1-1/+29
svn path=/trunk/; revision=33971
2010-06-29Make sure we don't dereference an invalid function pointer. Fixes bug 4949.Gerald Combs1-3/+4
svn path=/trunk/; revision=33362
2010-05-18Avoid passing a NULL pointer to a string to proto_tree_add_uint_format()Jeff Morriss1-0/+3
svn path=/trunk/; revision=32878
2010-05-11Use consistent indentation; Whitesapce & formatting cleanup.Bill Meier1-4194/+4194
svn path=/trunk/; revision=32755
2010-04-29From Mike Morrin:Anders Broman1-44/+535
Dissection of BSSMAP IEs: Old BSS to New BSS Info and New BSS to Old BSS Info https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4712 svn path=/trunk/; revision=32606
2010-04-06#include <string.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32411
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2010-03-20Fix for Bug 4588:Gerasimos Dimitriadis1-1/+4
RANAP and friends want the MNC encoded in big endian form. svn path=/trunk/; revision=32257
2010-01-26Bug on bssmap SAI not decoded.Anders Broman1-6/+28
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4415 svn path=/trunk/; revision=31678
2010-01-18Fix a number of gcc _Wshadow warningsBill Meier1-6/+6
svn path=/trunk/; revision=31557