aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sccp.h
AgeCommit message (Collapse)AuthorFilesLines
2014-11-22Cleanup packet-sccp.c in preparation of trying to remove sccp_info member of ↵Michael Mann1-2/+12
packet_info. Convert a handful of global variables into function parameters that get passed through the dissector, so we shouldn't be dependent on pinfo->sccp_info anymore. Removal of pinfo->sccp_info will be done in a separate patch (when the dissectors that use it can be updated). packet-sua.c may need similar treatment. Change-Id: If0001638d666afc07e04b02aa32ef31d6223a5de Reviewed-on: https://code.wireshark.org/review/5343 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier1-4/+4
svn path=/trunk/; revision=52591
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-8/+10
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-02-26it's ==> its & its ==> it's as needed.Bill Meier1-1/+1
svn path=/trunk/; revision=47891
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-02-03Improve heuristic standard detection:Jeff Morriss1-1/+1
- Fix various bugs. - Add some optional debug. - Enable checking of the Calling address. - Check that the Called/Calling address has at least a minimum number of octets. - Handle XUDTS. - Reject messages whose mandatory variable pointers are 0 (meaning not present). - Reject Class-2 messages whose Class-spare bits are non-zero. - For (Class-2) messages that have no variable parameters but an optional pointer, only accept messages whose optional pointer is 0 (no optional parameters) or 1 (optional parameter immediately follows the pointer). - (For some of those Class-2 messages) if there are no optional parameters, reject messages if we didn't reach the end of the message. svn path=/trunk/; revision=40819
2012-01-30Try to determine MTP3 Standard heuristically, original codeAnders Broman1-0/+1
from Jeff Morris refactored a bit by me. svn path=/trunk/; revision=40776
2011-05-25Add some expert infos for unusual messages:Jeff Morriss1-2/+0
- routing on SSN but the SSN is not present or is unspecified (zero) - message handling has an unexpected value - message class is incorrect for the message type Also clean up some indentation and other white space. svn path=/trunk/; revision=37400
2010-11-22From Mike Morrin:Anders Broman1-0/+1
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
2009-06-02Decode SCCP cause values in SUA (using value_strings exported from the SCCPJeff Morriss1-0/+5
dissector). svn path=/trunk/; revision=28599
2008-09-24Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2848 :Jeff Morriss1-0/+7
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). svn path=/trunk/; revision=26262
2007-03-27Another iteration over sctp calls (RANAP/BSSAP) a step towards ↵Luis Ontanon1-5/+15
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-1/+7
* 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
2007-03-21packet_info.c and packet.cLuis Ontanon1-13/+40
add sccp_info to struct _packet_info (Sorry but the way private_data works and the fact that TCAP uses it and BSSAP/RANAP can be tunnelled on GSMMAP over TCAP makes it impossible to avoid) SCCP - Have SCCP to have a TAP, - Fix associations so that every message belongs to the association. - Export message type values so that they can be used by a tap listener RANAP - Have RANAP information attached to the sccp_info BSSAP + GSM_A - Have DTAP, BSSMAP and BSSAP info attached to the sccp_info svn path=/trunk/; revision=21076
2007-03-09GCC warning fixesJörg Mayer1-18/+18
epan/dissectors/ packet-bctp.c: no newline at end of file packet-epl.c: C++ style comments are not allowed in ISO C90 packet-sccp.c: missing initializer packet-sccp.h: comma at end of enumerator list packet-sctp.c: suggest parentheses around assignment used as truth value packet-vnc.c: control reaches end of non-void function pointer targets in passing argument 1 of 'g_strtod' differ in signedness pointer targets in passing argument 3 of 'vnc_client_to_server' differ in signedness gtk/ main.c: C++ style comments are not allowed in ISO C90 u3.h: function declaration isn't a prototype Other (trivial) stuff packet-sccp.h: Add svn properties svn path=/trunk/; revision=21011
2007-03-05prepare for in-tree call tracing of bssap and ranap.Luis Ontanon1-2/+7
svn path=/trunk/; revision=20978
2007-03-03Add an optional generated id to each association and have a tree with links ↵Luis Ontanon1-6/+14
to all messages of the association bellow it. svn path=/trunk/; revision=20967
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2006-03-11use se_trees instead of GHashTables,Luis Ontanon1-0/+49
rename binding into assoc(iation) which is the AOC name. move the definition of sccp_assoc_t to packet-sccp.h so that information regarding sccp associations it can be used by user protocols svn path=/trunk/; revision=17590