aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q931.c
AgeCommit message (Collapse)AuthorFilesLines
2009-01-28Check the length in dissect_q931_change_status_ie().Guy Harris1-3/+7
Don't print a string value returned by a function by using it as the format string - use "%s" as the format. svn path=/trunk/; revision=27320
2009-01-28new SERVICE/SERVICE ACKNOWLEGE messages defined in various US standards ↵Tomas Kukosa1-16/+72
(AT&T TR41459, Nortel NIS A211-1, Telcordia SR-4994) svn path=/trunk/; revision=27317
2008-12-20Fix various typos and spelling errors (mostly in text strings)Bill Meier1-1/+1
svn path=/trunk/; revision=27065
2008-12-02H.323 over SCTP supportTomas Kukosa1-7/+19
svn path=/trunk/; revision=26903
2008-09-24Packet-isup.c &packet-q931.[ch]:Anders Broman1-7/+7
In case of cause pointing out ie "faults" use the correct "ie value_string". in packet-isup.c use packet-e164.c for country code translation. svn path=/trunk/; revision=26264
2008-09-14Fix for bug 2870:Jaap Keuter1-3/+13
Wrap dissect_q931_cause_ie() in a save version which clears the have_valid_q931_pi semaphore. This may remain set if a malformed q931 message causes an exception. svn path=/trunk/; revision=26190
2008-03-18Add codeset 5 ETSI party catagory IE.Jaap Keuter1-1/+44
svn path=/trunk/; revision=24690
2008-03-18Add consistent Bearer Capability layer identifications.Jaap Keuter1-20/+36
svn path=/trunk/; revision=24689
2007-04-26memmove() is needed only if the source and destination might overlap.Guy Harris1-1/+1
svn path=/trunk/; revision=21591
2006-12-21From Alfred Alinazar:Jaap Keuter1-0/+9
The patch is to dissect unknown information element when an Avaya PBX use codeset = 6 to send display. svn path=/trunk/; revision=20189
2006-11-28From Richard Braun:Anders Broman1-2/+2
The Q931 dissector applies a wrong mask when testing the odd/even indicator bit. svn path=/trunk/; revision=20010
2006-09-21Fix for bug http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1106Anders Broman1-0/+6
packet-lapd.c change on 2006-03-02 (17452) by etxrab swaps SRC/DST for the default case And added a comment to Q.931 svn path=/trunk/; revision=19275
2006-08-28- new function ssl_dissector_delete()Tomas Kukosa1-2/+11
- register H.225.0 over TLS (configurable port 1300) - register SIP over TLS (fixed port 5061) - new function proto_tree_get_root() svn path=/trunk/; revision=19059
2006-06-15gsm_a: Dissect LLCAnders Broman1-6/+6
Q.931: Add Bit 8 first in Bearer Cap IE svn path=/trunk/; revision=18477
2006-06-02From Richard van der Hoff:Anders Broman1-30/+86
Q.931:I mprovesthe dissection of Q.931 Channel Identification information elements, by using proper (filterable) header fields rather than text tree items. H253: make the h.263 dissector dissect the group-of-block number which comes after a GOB start code. svn path=/trunk/; revision=18323
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2006-03-23Completed Channel Identification IE with Channel number/Slot map fieldJaap Keuter1-8/+27
svn path=/trunk/; revision=17712
2005-12-06protocol discriminator byte has to be taken into info_element_lenTomas Kukosa1-1/+1
svn path=/trunk/; revision=16698
2005-12-01From Jaap Keuter:Anders Broman1-0/+11
Q.931 fails to pass long message to H.225 svn path=/trunk/; revision=16631
2005-09-17Move a pile of protocol-related headers from the top-level sourceGuy Harris1-2/+2
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. svn path=/trunk/; revision=15844
2005-08-10rename ep_tvb_get_string() to tvb_get_ephemeral_string() asnd update the ↵Ronnie Sahlberg1-3/+3
documentation in README.developer svn path=/trunk/; revision=15270
2005-08-05More char -> const char warning fixesJörg Mayer1-2/+2
svn path=/trunk/; revision=15218
2005-07-24some more dissectors converted to ep_tvb_get_stringRonnie Sahlberg1-15/+6
again at least one obvious memleak was found in the old code svn path=/trunk/; revision=15031
2005-06-27From Alejandro VaqueroAnders Broman1-44/+4
new dissector for the AudioCodes trunk trace protocol. This protocol is used to debug the trunk protocol in AudioCodes gateways. It currently supports ISDN PRI and CAS (MFCR2, WinkStart, etc...) trunk protocols. It also add these protocols in the "Voip Calls Graph..." svn path=/trunk/; revision=14790
2005-06-02add a generated toplevel line between the connectionless DCE/RPC protocol ↵Ulf Lamping1-1/+4
and the defragmented DCE/RPC content, to better understand what's going on if defragmentation is done. svn path=/trunk/; revision=14531
2005-04-23Don't try to free NULL. Don't overflow a buffer.Gerald Combs1-3/+6
svn path=/trunk/; revision=14173
2005-04-22Don't pass a null format string to val_to_str().Gerald Combs1-3/+3
svn path=/trunk/; revision=14167
2005-04-04From Cvetan IvanovRonnie Sahlberg1-0/+16
Updates to Q931, SM and ISUP svn path=/trunk/; revision=14013
2005-03-14Combine the two switch statements on IE type into one; this cleansGuy Harris1-82/+139
things up a bit (so that if we go through one switch statement we don't fall into the other). svn path=/trunk/; revision=13751
2005-02-09Move the following files from /trunk to /trunk/epan:Lars Roland1-1/+1
asn1.[ch] follow.[ch] ptvcursor.[ch] reassemble.[ch] xmlstub.[ch] fix #include statements accordingly. svn path=/trunk/; revision=13366
2005-02-03From Francisco Alcoba:Anders Broman1-7/+7
Patch for graphing ISUP calls. It shows the type of message, in the first one the calling and called numbers, and in the second the SPs and CIC; in releases it shows the cause value. svn path=/trunk/; revision=13263
2005-02-01From Alejandro Vaquero:Lars Roland1-184/+237
h323 taps support up to 5 messages per packet now. VoIP call analysis: - Collect ISUP, SIP and H323 calls from a capture and show them in window with the following info: - Start and Stop time of the call - Init svn path=/trunk/; revision=13225
2005-01-17Export q931_protocol_discriminator_valsAnders Broman1-1/+1
svn path=/trunk/; revision=13098
2005-01-05From Chris Maynard: free strings allocated by "tvb_get_string()" afterGuy Harris1-0/+1
we're done with them. svn path=/trunk/; revision=12962
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-08-21Prevent the word "desegmentation" at the GUI, but use reassembling at that ↵Ulf Lamping1-2/+3
places, as we also use "defragmentation" and "reassembling". Use reassembling as the general term for such actions. I (hopefully) didn't changed any protocol fields or preference file names, but only the GUI labels appearing in the protocol display and the protocol preferences. Also added a note to the protocol preferences (where appropriate), that you have to enable "Allow subdissectors to reassemble TCP streams" at the corresponding protocol settings for TCP reassembling to take effect. If you encounter any mistakes I've made here, please let me know... svn path=/trunk/; revision=11784
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+3166
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. svn path=/trunk/; revision=11410