aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tcap-persistentdata.c
AgeCommit message (Collapse)AuthorFilesLines
2007-04-23Mark all the items for TCAP statistics as generatedJeff Morriss1-128/+138
svn path=/trunk/; revision=21524
2007-04-16Frame numbers are unsigned, print them as suchJeff Morriss1-8/+8
svn path=/trunk/; revision=21443
2007-02-19Remove some unused parameters (pinfo).Jeff Morriss1-166/+152
Remove some _U_'s on parameters that _are_ used. Reindent some. svn path=/trunk/; revision=20860
2006-09-27From Florent Drouin:Anders Broman1-0/+1261
Here are some patches and a new module to introduce the notion of Tcap context for a Tcap transaction. For each Tcap transaction, several parameters, like session identifier, start time or OID, will be saved in a hash table, to keep these informations available for the next messages. This context is then given to the upper layer, and can be used, for example, to generate transaction-associated statistics. Moreover, the Upper protocol, detected in the Begin of the TCAP transaction ( according to the OID ), is saved in the context, and will be reused for the next messages of the transaction. This help the decoding of SS7 messages, without any SSN configuration in the "wireshark preferences". You will have too, the possibility to apply a filter to see only the messages related to a TCAP transaction. (tcap.srt.session_id=XXX) To enable the use of the Tcap context, you have 2 new parameters in the preferences, - SRT, enable search for a Tcap context for any TCAP messages - persistentSRT, keep the Tcap context, even after the transaction has been closed. This is mandatory with Wireshark, to have a clean display of the stats. There is 2 new timers in the preferences for the statistics, to tune the retransmission timeout, and messages lost timeout. svn path=/trunk/; revision=19341