aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sua.c
AgeCommit message (Collapse)AuthorFilesLines
2010-06-04Use a gboolean to store a boolean and change the plurality on the preference ↵morriss1-2/+2
name git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33096 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-04Add a preference that allows the user to decide if they want the source andmorriss1-17/+55
destination address PC or GT (depending on the RI) put in the (pinfo) source and destination (and thus into the source and destination columns). This may help (if the IP addresses change but the PC or GT do not) or hurt (if the PC, GT, or RI change but the IP addresses do not) TCAP's ability to identify which messages belong to which TCAP "session." git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33094 f5534014-38df-0310-8fa8-9805f1628bb7
2010-06-03Set the (pinfo) address if a PC is present (for now: regardless of whether ↵morriss1-4/+29
routing is on GT or not). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33076 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-24Refer to the endianness arguments as "encoding" rather thanguy1-96/+96
"representation" - we already use "representation" to refer to the text representation of fields. Change some routines with an endianness argument to make it a representation argument instead; git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32929 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-13Create a new REP_NA value for fields where there are no representationsguy1-1/+1
from which to choose; use that for protocol fields in some protocols (modify the CORBA generator to use it, and manually update the generated CORBA dissectors accordingly). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32777 f5534014-38df-0310-8fa8-9805f1628bb7
2010-05-12Instead of using private #defines for the last argument toguy1-96/+95
proto_tree_add_item(), use the new REP_BIG_ENDIAN and REP_LITTLE_ENDIAN values. Use those #defines in variables that represent the byte order, as well. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32776 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-15Show spare bits in decimal, not as booleans.morriss1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31537 f5534014-38df-0310-8fa8-9805f1628bb7
2009-09-10offset_from_real_beginning() is only called with 0 as second argument, so ↵krj1-1/+1
remove the argument completely. It seems that the second argument only acts as an accumulator allowing offset_from_real_beginning() to call itself recursively. To be consistent offset_from_real_beginning() is renamed to tvb_offset_from_real_beginning(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29844 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()krj1-7/+7
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29446 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-09Don't guard col_clear with col_checkkrj1-2/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29344 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-99/+99
(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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-02Decode SCCP cause values in SUA (using value_strings exported from the SCCPmorriss1-8/+40
dissector). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28599 f5534014-38df-0310-8fa8-9805f1628bb7
2009-04-07Use some default true_false_string's.wmeier1-9/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27983 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-20Fix various typos and spelling errors (mostly in text strings)wmeier1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27065 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-18Fix various typos and spelling errors (mostly in text strings)wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27050 f5534014-38df-0310-8fa8-9805f1628bb7
2008-12-17Fix some typos and spelling (mostly in text strings)wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27037 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-31Fix some "format not a string literal and no format arguments" warnings.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26648 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-30Minor proto_reg_handoff cleanup: use find_dissector when appropriate.wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26308 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-24Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2848 :morriss1-3/+32
Decode SUA GT digits. This removes the (undecoded, raw BCD) FT_BYTES field sua.global_title_signals and adds an FT_STRING field sua.global_title_digits (like in SCCP). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26262 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-17A couple of trivial indentation fixesmorriss1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26225 f5534014-38df-0310-8fa8-9805f1628bb7
2008-09-15Put Data dissection (if no subdissector is found) on the toplevel tree ↵morriss1-20/+20
instead of within the SUA tree. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26211 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-27remove debugging printouts.lego1-15/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21236 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-27Another iteration over sctp calls (RANAP/BSSAP) a step towards ↵lego1-5/+37
TCAP/(MAP/IMAP/CAMEL) - Fix SUA calls (I would need some more traces to test this) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21235 f5534014-38df-0310-8fa8-9805f1628bb7
2007-03-22Mine:lego1-4/+43
* 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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21126 f5534014-38df-0310-8fa8-9805f1628bb7
2006-10-19Register the dissector.tuexen1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19609 f5534014-38df-0310-8fa8-9805f1628bb7
2006-06-29Add a heuristic table to SUA (SUA and SCCP should share the same table) to ↵etxrab1-0/+7
heuristically dissect RANAP ower SUA. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18616 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21change a whole bunch of ethereal into wiresharksahlberg1-4/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18196 f5534014-38df-0310-8fa8-9805f1628bb7
2006-01-05Bill Meier:jmayer1-1/+1
Spelling fixes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16956 f5534014-38df-0310-8fa8-9805f1628bb7
2005-12-16Get rid of duplicted dissector tables for MTP3 Service indicator and SCCP ssn:setxrab1-4/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@16815 f5534014-38df-0310-8fa8-9805f1628bb7
2005-09-17Move a pile of protocol-related headers from the top-level sourceguy1-1/+1
directory to the epan directory. Some of them should perhaps ultimately be moved to epan/dissectors, if they pertain only to stuff exported by a particular dissector. Fix Gerald's e-mail address in files we're moving. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15844 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-18From Jeff Morris: Display PC structured.tuexen1-2/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13802 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-18From Jeff Morris: display protocol class at parameter level.tuexen1-3/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13800 f5534014-38df-0310-8fa8-9805f1628bb7
2004-12-27Again, some warnings removed.ulfl1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12842 f5534014-38df-0310-8fa8-9805f1628bb7
2004-09-29- Added support for version 08 of the ID (expired).tuexen1-231/+489
- Updated support for latest version to RFC 3868. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12138 f5534014-38df-0310-8fa8-9805f1628bb7
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12115 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Move dissectors to epan/dissectors directory.gram1-0/+1763
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11410 f5534014-38df-0310-8fa8-9805f1628bb7