aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-q932.c
AgeCommit message (Collapse)AuthorFilesLines
2011-09-27Get rid of check_col, while at it set ENC.Anders Broman1-5/+5
svn path=/trunk/; revision=39164
2011-05-13Regenerate ASN.1 dissectors to update the #line directive.Stig Bjørlykke1-11/+11
svn path=/trunk/; revision=37118
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
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-05-11Add a little more code to avoid not-very-useful blurbs:Jeff Morriss1-3/+3
- 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 more of the ASN.1 dissectorsJeff Morriss1-37/+37
svn path=/trunk/; revision=32746
2009-10-11Make all proto_* values static.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30516
2009-06-26Re-generate asn1 dissectors after hf_register_info cleanup.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=28848
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-8/+8
(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-1/+1
svn path=/trunk/; revision=28379
2009-02-07#include <epan/conversation.h> and/or #include <epan/emem.h> not req'd ...Bill Meier1-6/+5
svn path=/trunk/; revision=27390
2009-01-28#include prefs.h not req'dBill Meier1-6/+5
svn path=/trunk/; revision=27322
2008-11-04asn2wrs generated files changed as a result of recent asn1 template changes Bill Meier1-9/+4
svn path=/trunk/; revision=26698
2008-07-26Get rid of few warnings (unused generated code, signed/unsigned mismatch)Tomas Kukosa1-2/+2
svn path=/trunk/; revision=25839
2008-05-21Fix some of the Errors/warnings detected by checkapi.Anders Broman1-4/+5
svn path=/trunk/; revision=25335
2008-01-04Get rid of dissect_ber_boolean_value() and change the signature ofAnders Broman1-3/+3
dissect_ber_boolean() to return a value and update asn2wrs to generate the new signature. Regenerate all BER dissectors. svn path=/trunk/; revision=24015
2007-12-06fix field attributes handling for tagged typesTomas Kukosa1-2/+2
regenerate involved dissectors svn path=/trunk/; revision=23783
2007-10-17- register QSIG over SIPTomas Kukosa1-2/+2
- regenerate Q932, Q932-ROS, QSIG from new makefiles svn path=/trunk/; revision=23215
2007-08-24get_ber_length doesn't need the tree argument, get rid of it.Jörg Mayer1-2/+2
Rebuild asn1 dissectors. svn path=/trunk/; revision=22627
2007-07-20QSIG fully implementedTomas Kukosa1-0/+2
svn path=/trunk/; revision=22361
2007-07-18rose_ctx_t structure usage in Q.932 dissectorTomas Kukosa1-7/+11
svn path=/trunk/; revision=22349
2007-07-13- get rid of anonymous unionsTomas Kukosa1-1/+1
- move some structures from packet-per and packet-q932-ros to asn1.h svn path=/trunk/; revision=22295
2007-06-05Q.932 and QSIG regenerated with -X (new BER) optionTomas Kukosa1-206/+101
svn path=/trunk/; revision=22044
2007-05-22Prepare for the use of the new -X parameter for BER encoded protocols.Anders Broman1-45/+45
svn path=/trunk/; revision=21889
2007-05-15actx in the rest of dissect_ber..()lAnders Broman1-13/+13
svn path=/trunk/; revision=21773
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.Anders Broman1-136/+143
svn path=/trunk/; revision=21753
2007-05-06Start introducing actx to ber functions.Anders Broman1-34/+34
svn path=/trunk/; revision=21705
2007-05-04- Q.932: fix warningsTomas Kukosa1-7/+4
- RNSAP: generate field functions only for necessary types - other dissectors regenerated svn path=/trunk/; revision=21683
2007-05-04fix few warnings in Q.932 and QSIG dissectorsTomas Kukosa1-5/+8
svn path=/trunk/; revision=21677
2007-05-03EXTERNAL type is handled in asn2wrs nowTomas Kukosa1-1/+1
private implementations were renamed EXTERNAL -> EXTERNALt svn path=/trunk/; revision=21662
2007-04-30Fix up the asn/q932 Makefile as per Tomas Kukosa's suggestion - and makeGuy Harris1-4/+4
it a lot more like the Makefile.nmake file. Also, use $(PROTOCOL_NAME) in a couple of places in Makefile.nmake where it wasn't being used before. (It might be interesting to see whether we can use a template for these Makefiles, and just tweak some variables at the beginning.) That lets us get a Q.932 ROS dissector with the right file name and with "q932.ros" rather than "q932-ros" as the dissector name; do that. svn path=/trunk/; revision=21625
2007-04-30The Q.932 dissector doesn't need to include <string.h>; the Q.932 ROSGuy Harris1-11/+9
dissector does. The fix to the Makefile to generate packet-q932-ros.c changed the protocol name in some cases; change it uniformly. svn path=/trunk/; revision=21622
2007-04-28Include <string.h> before using C string functions.Guy Harris1-7/+9
svn path=/trunk/; revision=21616
2007-04-27new Q.932 and QSIG dissectorsTomas Kukosa1-0/+1117
svn path=/trunk/; revision=21602