aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bssap.c
AgeCommit message (Collapse)AuthorFilesLines
2013-03-15[-Wmissing-prototypes]Anders Broman1-1/+2
explicit casts. svn path=/trunk/; revision=48310
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-1/+1
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
2013-01-31Comment out unused hf[] entries & etc.Bill Meier1-1/+3
(found by checkhf) svn path=/trunk/; revision=47389
2013-01-17Register in the UDP heuristic table rather than the internal one.Anders Broman1-1/+3
svn path=/trunk/; revision=47133
2012-12-12"Fill" a couple of value_string(ext)Anders Broman1-30/+32
svn path=/trunk/; revision=46518
2012-12-02Remove unneeded variable initializers.Evan Huus1-1/+1
svn path=/trunk/; revision=46328
2012-11-29Make all enum_val_t's const.Jeff Morriss1-2/+2
svn path=/trunk/; revision=46292
2012-10-18Minor cleanup:Bill Meier1-442/+512
- revert incorrect replacement of FALSE by ENC_BIG_ENDIAN done a while back (10 instances); [The incorrect use of ENC_BIG_ENDIAN was benign since ENC_BIG_ENDIAN is currently defined ad 0x0000000]; - create/use extended value strings as appropriate; - remove unneeded initializers; - reformat hf[] entries; - whitespace. svn path=/trunk/; revision=45638
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-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-08-14Don't add proto_bssap to the tree twice, once as a hidden item and once ↵Chris Maynard1-4/+3
using proto_tree_add_text(). Instead use proto_tree_add_protocol_format(). Problem reported here: http://article.gmane.org/gmane.network.wireshark.user/14509 svn path=/trunk/; revision=44509
2012-08-10Use val_to_str_const() where appropriate;Bill Meier1-3/+4
Also (for a few files): - create/use some extended value strings; - remove unneeded #include files; - remove unneeded variable initialization; - re-order fcns slightly so prefs_reg_handoff...() at end, etc svn path=/trunk/; revision=44438
2012-07-31Update filter names following the changes done in r44162Pascal Quantin1-2/+2
svn path=/trunk/; revision=44168
2012-07-13tvb_length_remaining() can return -1, so check if its return value is <= 0 ↵Chris Maynard1-53/+53
when aborting and not just == 0. svn path=/trunk/; revision=43702
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-05-04AFAICT sys/types.h & netinet/in.h #includes are not needed for these files.Bill Meier1-8/+0
(Let's see if any of the buildbots give any errors). Also: remove trailing whitespace on lines. svn path=/trunk/; revision=42429
2012-03-10Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+2
svn path=/trunk/; revision=41462
2012-01-24Fix a duplicate display filter name.Chris Maynard1-1/+1
svn path=/trunk/; revision=40696
2012-01-19Fix some duplicate display filter names.Chris Maynard1-7/+7
svn path=/trunk/; revision=40586
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-2/+2
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-36/+36
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-09-26Get rid of check_col, while at it set ENC.Anders Broman1-139/+131
svn path=/trunk/; revision=39146
2011-04-04Change the signature of elem_fcn():ns to include pinfo.Anders Broman1-26/+26
svn path=/trunk/; revision=36443
2011-04-04Change the msg_fcn() signature to include pinfo.Anders Broman1-6/+4
svn path=/trunk/; revision=36441
2011-02-07Remove unneeded #includes (stdio.h,stdlib.h);Bill Meier1-124/+124
Whitespace cleanup: trailing, indentation, "4-space tabs" svn path=/trunk/; revision=35850
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-4/+4
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-08-17The Mobile Status msg in BSSAP+ has IMSI as first possible IEGerasimos Dimitriadis1-1/+1
svn path=/trunk/; revision=33832
2010-05-10Indentation & whitespace cleanup (including: "4 space tabs" ==> spaces)Bill Meier1-1923/+1923
svn path=/trunk/; revision=32735
2010-04-06#include <string.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32410
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/+1
RANAP and friends want the MNC encoded in big endian form. svn path=/trunk/; revision=32257
2010-01-03Fixed abbrev for "Location information age IE".Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=31421
2009-11-27Expert info when E.212 MCC/MNC contain non-decimal digitsGerasimos Dimitriadis1-3/+3
svn path=/trunk/; revision=31102
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=29345
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-70/+70
(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 svn path=/trunk/; revision=28770
2009-05-13Apply some of the patches from:Anders Broman1-1/+1
http://wiki.wireshark.org/Development/Optimization svn path=/trunk/; revision=28356
2008-12-18Fix various typos and spelling errors (mostly in text strings)Bill Meier1-2/+2
svn path=/trunk/; revision=27050
2008-11-21From Johnny Mitrevski:Anders Broman1-11/+55
Add a preference to chose between A and lb interface svn path=/trunk/; revision=26820
2008-09-27Handle pref change via pref callback instead of registering an init fcnBill Meier1-23/+26
svn path=/trunk/; revision=26283
2008-09-24Fix indentation to be reasonably consistentBill Meier1-525/+525
svn path=/trunk/; revision=26258
2008-08-19From Neil Piercy:Anders Broman1-7/+1
RR has been split from DTAP, with common stuff going to the common files (plus a few minor knock-on consequences). Fix the broken tap: I had not realised that the register_tap call in the dissector registration actually _created_ the tap entry (not the register_tap_listener), and not just associated the tap_id returned with the tap registered by the listener. The use of separate statics by the split lead to 3 taps called "gsm_a", but only the first of which was ever found in the tap_queue_packet. Added (yet another) global for now to cope. Also attached is a patch to tap.c which simply returns the same tap_id if the register_tap is called twice with the same name - I can't see any downside to this, can you? Anyway it seemed to work with deliberately keeping multiple calls. svn path=/trunk/; revision=26039
2008-08-04First step to split the gsm_a dissector into several smaller ones ( done by ↵Anders Broman1-1/+1
Neil Piercy) rename the "old" one to gsm_a_common. svn path=/trunk/; revision=25915
2008-05-14Fix some of the Errors/warnings detected by checkapi.Anders Broman1-2/+3
svn path=/trunk/; revision=25294
2008-02-07Removed even more "statement not reached" warnings.Stig Bjørlykke1-4/+0
svn path=/trunk/; revision=24286
2007-06-04Register as heuristic dissector for SUA.Michael Tüxen1-0/+1
svn path=/trunk/; revision=22040
2007-04-23Add some GCC warnings to the standard set, and add some others to theGuy Harris1-16/+16
--enable-extra-gcc-checks set. If we turn on -pedantic, try turning on -Wno-long-long as well, so that it's not *so* pedantic that it rejects the 64-bit integral data types that we explicitly require. Constify a bunch of stuff, and make some other changes, to get rid of warnings. Clean up some indentation. svn path=/trunk/; revision=21526
2007-04-14fix MacOSX gcc-3.3 warnings about unused tfs/value_string variablesSebastien Tandel1-1/+1
most have been tagged unused (few have been deleted if dissector has not been modified since a long time) move packet-ssl-utils.c to DISSECTOR_SRC svn path=/trunk/; revision=21431
2007-04-03Implement a proposal from Elefterios Gabriel for SCCP:Luis Ontanon1-0/+2
Add a table of DPCs and SSNs that allow to override the protocol that would be choosen so that the same SSN can use two different protocols in two different DPCs. I did not believe it someone could have done it, then I saw the captures... svn path=/trunk/; revision=21321
2007-03-27Another iteration over sctp calls (RANAP/BSSAP) a step towards ↵Luis Ontanon1-4/+4
TCAP/(MAP/IMAP/CAMEL) - Fix SUA calls (I would need some more traces to test this) svn path=/trunk/; revision=21235
2007-03-22Mine:Luis Ontanon1-4/+4
* add SUA to the "VoIP Calls" tap. * propagate changes to packet-sccp.h to other dissectors From Neil Piercy: * add SLR, DLR and CAUSE to COL_INFO svn path=/trunk/; revision=21126