aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h225.c
AgeCommit message (Collapse)AuthorFilesLines
2013-09-16Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9155 :Pascal Quantin1-55/+56
Ensure that codec_str string is always initialized svn path=/trunk/; revision=52107
2013-06-19Apparently one of our major global headers must include emem.h, because I justEvan Huus1-7/+8
found a bunch more asn1 dissectors using emem without ever directly including the header. Convert those to wmem as well, which involves add a number of #include directives since dissectors do *not* automatically pull in the wmem headers. svn path=/trunk/; revision=50066
2013-05-27Postfix FT_NONE fields with "_element" string to reduce number of ↵Pascal Quantin1-366/+366
incompatible filters in ASN.1 dissectors https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2402 svn path=/trunk/; revision=49599
2013-04-11Update the ASN.1 based dissectors following the changes done in r48812Pascal Quantin1-2/+2
svn path=/trunk/; revision=48820
2013-03-19From beroset:Anders Broman1-2/+2
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48429
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-2/+2
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
2013-01-24Fix H.460.x calling from H.225 - content decodingTomas Kukosa1-6/+27
svn path=/trunk/; revision=47253
2012-12-18When copying addresses, also copy the (new) hf field.Jeff Morriss1-50/+48
Use SET_ADDRESS in some dissectors that weren't using it (so that the hf field is correctly initialized). Introduce a COPY_ADDRESS_SHALLOW (which copies an address without copying the contents of the data field). svn path=/trunk/; revision=46602
2012-09-24Regenerate asn.1 dissectors.Jakub Zawadzki1-5/+5
svn path=/trunk/; revision=45110
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-10Regenerate all asn.1 dissectors.Jakub Zawadzki1-13/+12
svn path=/trunk/; revision=44861
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-10-15Update generated ASN1 *.[hc] files after recent work done by Jeff Morriss;Bill Meier1-1/+1
The only change in each file is in a comment showing the asn2wrs cmd used to build that file. svn path=/trunk/; revision=39427
2011-08-07Fix bug 5848, "https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5848", ↵Chris Maynard1-53/+57
which was apparently introduced with r27287 (http://anonsvn.wireshark.org/viewvc/trunk/epan/dissectors/packet-h225.c?r1=26698&r2=27287). Regenerate the packet-h225.c dissector. Patch from ericn1234@yahoo.com. Reference: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5848 svn path=/trunk/; revision=38399
2011-05-13Regenerate ASN.1 dissectors to update the #line directive.Stig Bjørlykke1-67/+67
svn path=/trunk/; revision=37118
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-3/+3
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-11-05Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-1/+1
Sort certain value_string arrays so the values are in ascending order; Use val_to_str_ext() instead of for loops to do value_string array lookups (voip_calls.c). Minor whitespace cleanup. svn path=/trunk/; revision=34794
2010-05-13Use find_or_create_conversation() in some ASN.1 dissectorsJeff Morriss1-12/+2
svn path=/trunk/; revision=32791
2010-05-11Add a little more code to avoid not-very-useful blurbs:Jeff Morriss1-217/+217
- Change spaces in the name to underscores before comparing it to the blurb. - Check if the type simply as T_ prepended to the name. - Don't put in a blurb of "NULL". and regenerate the dissectors. svn path=/trunk/; revision=32748
2010-05-11Regenerate a few of the ASN.1 dissectorsJeff Morriss1-770/+770
svn path=/trunk/; revision=32742
2010-05-05H.225.0 updated to version 7 (2009-12)Tomas Kukosa1-25/+99
svn path=/trunk/; revision=32672
2010-04-06#include <stdio.h> not needed.Bill Meier1-6/+5
svn path=/trunk/; revision=32405
2010-01-26Remove two unused global variables (one of which was causing a gcc -Wshadow ↵Bill Meier1-5/+3
warning). svn path=/trunk/; revision=31690
2010-01-17Get rid of check_col();Anders Broman1-63/+59
svn path=/trunk/; revision=31544
2010-01-13check_col.diffAnders Broman1-3/+3
Remove redundant calls to check_col() in the template files and regenerate. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31521
2010-01-13From Didier Gautheron:Anders Broman1-6/+2
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
2009-12-19For fields of type FT_ABSOLUTE_TIME, have the "display" value be one ofGuy Harris1-4/+4
ABSOLUTE_TIME_LOCAL or ABSOLUTE_TIME_UTC, indicating whether to display the date/time in local time or UTC. (int)ABSOLUTE_TIME_LOCAL == (int)BASE_NONE, so there's no source or binary compatiblity issue, although we might want to eliminate BASE_NONE at some point and have the BASE_ values used with integral types start at 0, so that you can't specify BASE_NONE for an integral field. svn path=/trunk/; revision=31319
2009-11-22Handle lenght restriction extension of restricted strings.Anders Broman1-16/+16
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4251 svn path=/trunk/; revision=31047
2009-10-09Regenerate asn1 dissectors (no change, only some line offset changes)Kovarththanan Rajaratnam1-57/+57
svn path=/trunk/; revision=30454
2009-09-24Don't guard col_append_str with check_colKovarththanan Rajaratnam1-4/+1
svn path=/trunk/; revision=30125
2009-08-21Sanitize epan includesKovarththanan Rajaratnam1-1/+1
svn path=/trunk/; revision=29499
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29346
2009-08-05Add a couple of pointer checks.Gerald Combs1-1/+5
svn path=/trunk/; revision=29301
2009-06-26Re-generate asn1 dissectors after hf_register_info cleanup.Stig Bjørlykke1-57/+57
svn path=/trunk/; revision=28848
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-89/+89
(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 svn path=/trunk/; revision=28770
2009-05-16Regenerate all asn2wrs generated dissectors.Stig Bjørlykke1-91/+91
svn path=/trunk/; revision=28379
2009-03-25Make it possible to check for extension marker in SEQUENCE OF and SET OF.Anders Broman1-4/+4
Fore some reason the trace in bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3360 does not decode properly if dissecting the exension marker so leave that code #if 0:ed out for now. svn path=/trunk/; revision=27848
2009-01-22Fix Bug 3219: avoid overwriting H.323 callIdentifier value when ↵Tomas Kukosa1-60/+67
CallIdentifier type is called from another dissector, e.g. H.450 svn path=/trunk/; revision=27287
2008-11-04asn2wrs generated files changed as a result of recent asn1 template changes Bill Meier1-42/+37
svn path=/trunk/; revision=26698
2008-11-01Regenerate all asn2wrs generated dissectorsAnders Broman1-90/+90
svn path=/trunk/; revision=26670
2008-07-26Get rid of next few warnings (dissect_per_choice needs signed value parameter)Tomas Kukosa1-4/+4
svn path=/trunk/; revision=25840
2008-07-26Get rid of few warnings (unused generated code, signed/unsigned mismatch)Tomas Kukosa1-78/+69
svn path=/trunk/; revision=25839
2008-05-21Fix some of the Errors/warnings detected by checkapi.Anders Broman1-21/+25
svn path=/trunk/; revision=25335
2008-01-09more sophisticated H245 OLC handling focusing on more reliable T.38 ↵Tomas Kukosa1-1/+1
establishment svn path=/trunk/; revision=24043
2007-12-28support for additionally SIZE constrained TypereferenceTomas Kukosa1-43/+89
the support is only semiautomated as this feature does not occur very often use this feature for the TBCD-STRING in the H.225 dissector svn path=/trunk/; revision=23958
2007-11-24Make sure h225_pi is never NULL.Gerald Combs1-1/+1
svn path=/trunk/; revision=23568
2007-11-12Don't dereference a NULL pointer.Gerald Combs1-2/+2
svn path=/trunk/; revision=23438
2007-10-31Use oid_add_from_string for adding names.Anders Broman1-6/+6
(gsmmap and inap does not compile at the moment). svn path=/trunk/; revision=23324
2007-10-29asn2wrsTomas Kukosa1-25/+25
- parameterized object class assignment - octet string with extensible size constraint - RELATIVE-OID type (still not supported in packet-per/ber) packet-per - octet string with extensible size constraint more dissect_per_... functions exported from libwireshark.dll PER dissectors regenerated add forgotten packet-h323-template.h fix svn properties for h323 files svn path=/trunk/; revision=23309
2007-10-18H.460 new dissector implemented (H.460.2-H.460.22)Tomas Kukosa1-78/+113
H.225 - change RysMessage_vals to h225_Rasmessage_vals - use #.PDU directive for H323-UserInformation and RasMessage instead of implementing it by hands - register RasMessage_PDU as "h225.ras" dissector for calling it from H.460 asn2wrs make PDUs exportable svn path=/trunk/; revision=23226