aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-gsm_abis_om2000.c
AgeCommit message (Collapse)AuthorFilesLines
2013-12-19Rename a couple of to_str functions to have ep_ in the name. This makes itEvan Huus1-1/+1
obvious that the returned string is ephemeral, and opens up the original names in the API for versions that take a wmem pool (and thus can work in any scope). svn path=/trunk/; revision=54249
2013-12-15Fix [-Wmissing-prototypes]Jakub Zawadzki1-0/+2
svn path=/trunk/; revision=54135
2013-03-27Fix the incorrectly duplicated display filter for hf_om2k_cbi.Chris Maynard1-1/+1
#BACKPORT(1.8) svn path=/trunk/; revision=48595
2013-03-19From beroset:Anders Broman1-3/+3
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48426
2012-12-03Fix SVN #46348 (iow, do it properly).Bill Meier1-2/+2
(Fixes compile warning) svn path=/trunk/; revision=46349
2012-12-03Remove duplicated code added as part of SVN #44777;Bill Meier1-18/+6
Move the SVN #44777 new (unduplicated) code to the correct place. Also: fixes [-Wshadow] warning. svn path=/trunk/; revision=46348
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-05From Harald Welte via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7696 :Pascal Quantin1-0/+30
packet-gsm_abis_om2000: Add support for MO IF bytes 2 and 3 svn path=/trunk/; revision=44777
2012-09-05From Harald Welte via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7695 :Pascal Quantin1-3/+2
Fix minor inconsistency in packet-gsm_abis_om2000.c svn path=/trunk/; revision=44776
2012-07-31Follow-up of r44162: A-bis interface is not the same thing as A interface; ↵Pascal Quantin1-72/+72
update filters and protocol names accordingly svn path=/trunk/; revision=44172
2012-07-31Updated GSM dissectors display filters per checkfiltername.plMichael Mann1-72/+72
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-04-04Replace a:Jeff Morriss1-1/+1
proto_tree_add_bytes_format*(tree, hf, tvb, offset, length, tvb_get_ptr(tvb, offset, length), [...]) with: proto_tree_add_bytes_format*(tree, hf, tvb, offset, length, NULL, [...]) svn path=/trunk/; revision=41942
2012-03-18From Reinhard Speyerer: Fix several misspellings/typos in WiresharkBill Meier1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6967 svn path=/trunk/; revision=41645
2012-03-16Fix some of the incorrect hf[] FT_BOOLEAN 'display' and 'bitmask' fields;Bill Meier1-16/+15
(Additional instances requiring feedback from the dissector author have been marked with XXX). For 'hf_om2k_aop' use a bitmask in the hf[] entry rather than shifting & etc in the proto_tree_add_uint() call. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6792 Comment #8. svn path=/trunk/; revision=41612
2012-03-06Don't use FT_BOOLEAN with value_strings: the code to generateJeff Morriss1-2/+2
representations of former is expecting true_false_strings--which are quite different than the latter. svn path=/trunk/; revision=41363
2012-03-05Various changes:Bill Meier1-370/+367
- Use proper proto_tree_add_item() 'encoding' arg (instead of TRUE/FALSE); - Call col_append_fstr() even when 'tree==NULL'; - Use value_string_ext to access the larger value_string tables; - Handle tvb_reported_length() can return -1; - Remove 'set but never used' variable and associated line of code; - Remove unneeded #include <prefs.h>; - Remove empty proto_reg_handoff(); - Do minor whitespace cleanup. svn path=/trunk/; revision=41357
2012-02-26Harald Welte <laforge@gnumonks.org>Jörg Mayer1-0/+1421
via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6792 This is a new dissector for the non-standard Ericsson OM2000 protocol, as it is used for the OML on A-bis of Ericsson RBS 2xxx BTSs. It also includes a dissector for a shim-layer protocol that Ericsson uses for IP-based A-bis like the RBS 2409. As the protocol is not publicly documented, I have invented the name "EHDLC" (Ericsson HLDC) for it. svn path=/trunk/; revision=41195