aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/q932
AgeCommit message (Collapse)AuthorFilesLines
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
2009-10-11Make all proto_* values static.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=30516
2009-10-08Remove unused NEED_PACKET_PROTO_H variableKovarththanan Rajaratnam1-1/+0
svn path=/trunk/; revision=30409
2009-06-23From Kovarththanan Rajaratnam:Stig Bjørlykke1-4/+4
Clean up header field info in asn1/*-template.c files. From me: Fixed a few typos in the patch. svn path=/trunk/; revision=28817
2009-02-07#include <epan/conversation.h> and/or #include <epan/emem.h> not req'd ...Bill Meier1-1/+0
svn path=/trunk/; revision=27390
2009-01-28#include prefs.h not req'dBill Meier1-1/+0
svn path=/trunk/; revision=27322
2008-11-04Minor cleanup mostly related to proto_reg_handoffBill Meier1-6/+1
Remove code for unused handles; Localize handles (in proto_reg_handoff) which need not be global; Localize (in proto_reg_handoff) "saved prefs"; Use find_dissector instead of create_dissector_handle as appropriate; Use gboolean for "initialized" flag in proto_reg_handoff. svn path=/trunk/; revision=26693
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 Broman2-1/+6
svn path=/trunk/; revision=25335
2007-12-19asn1/*/Makefile.nmake were not part of the source package.Jörg Mayer1-1/+2
Spotted by Tomas Kukosa. svn path=/trunk/; revision=23921
2007-12-10ANSI TCAP regenerated and tested with -T -X asn2wrs optionsTomas Kukosa1-1/+1
asn2wrs has -T (tagged types support) and -X (new BER sttructures) default behavior remove all -T and -X usage svn path=/trunk/; revision=23823
2007-10-16- Fix svn:ignore for all directoriesJörg Mayer1-1/+0
- gsmmap: uncomment -s option in gsmmap.cnf - Fix cyclic dependencies: + Remove EXPORT_CNF from dependencies for cnf files + Replace all INCLUDE ...-exp.cnf with IMPORT ...-exp.cnf svn path=/trunk/; revision=23202
2007-10-15create exported cnf file for Q.932 and QSIGTomas Kukosa1-4/+6
(they are not used in any Wireshark dissector but they can be used in any plugin as few Q.932 and QSIG types are exported) svn path=/trunk/; revision=23183
2007-10-11Remove the remaining autogenereated -exp.cnf filesJörg Mayer1-36/+0
svn path=/trunk/; revision=23148
2007-10-11- Remove -e option if the generated -exp.cnf file isn't used.Jörg Mayer1-1/+1
- Add EXPORT_FILES to all files that still contain -e. svn path=/trunk/; revision=23145
2007-10-10more makefiles changed to new export mechanismTomas Kukosa3-1/+5
svn path=/trunk/; revision=23132
2007-10-10More conversions and updates to existing Makefile stuffJörg Mayer8-466/+101
svn path=/trunk/; revision=23127
2007-09-24improvements in ROS handling in Q.932 and H.450Tomas Kukosa4-96/+10
move common ROS code into ros/ros-*.cnf files svn path=/trunk/; revision=22936
2007-08-24get_ber_length doesn't need the tree argument, get rid of it.Jörg Mayer2-2/+2
Rebuild asn1 dissectors. svn path=/trunk/; revision=22627
2007-07-20QSIG fully implementedTomas Kukosa2-12/+17
svn path=/trunk/; revision=22361
2007-07-19get rid of few warningsTomas Kukosa2-1/+8
svn path=/trunk/; revision=22355
2007-07-19change QSIG tables structure so as they can be generated automatically from ↵Tomas Kukosa1-2/+6
ASN.1 in the next step svn path=/trunk/; revision=22354
2007-07-18rose_ctx_t structure usage in Q.932 dissectorTomas Kukosa6-103/+72
svn path=/trunk/; revision=22349
2007-07-13- get rid of anonymous unionsTomas Kukosa3-13/+5
- move some structures from packet-per and packet-q932-ros to asn1.h svn path=/trunk/; revision=22295
2007-06-06Q.932 ROS regenerated from original ASN.1 sourceTomas Kukosa6-118/+173
svn path=/trunk/; revision=22055
2007-06-05Q.932 and QSIG regenerated with -X (new BER) optionTomas Kukosa3-5/+5
svn path=/trunk/; revision=22044
2007-05-13Second step in introducing asn context to BER dissectors just like in PER.Anders Broman3-6/+8
svn path=/trunk/; revision=21753
2007-05-04- Q.932: fix warningsTomas Kukosa1-1/+1
- 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 Kukosa3-4/+4
svn path=/trunk/; revision=21677
2007-04-30Fix up the asn/q932 Makefile as per Tomas Kukosa's suggestion - and makeGuy Harris4-13/+17
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 Harris2-9/+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-30Put the q932-ros dissector into a file with the right name.Guy Harris1-1/+1
svn path=/trunk/; revision=21620
2007-04-28Include <string.h> before using C string functions.Guy Harris1-1/+3
svn path=/trunk/; revision=21616
2007-04-28Fix the dependencies.Guy Harris1-1/+1
svn path=/trunk/; revision=21614
2007-04-27new Q.932 and QSIG dissectorsTomas Kukosa14-0/+1201
svn path=/trunk/; revision=21602