aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1
AgeCommit message (Collapse)AuthorFilesLines
2010-04-05Get rid of a bunch of check_col().Anders Broman1-10/+4
svn path=/trunk/; revision=32388
2010-03-18cmake changes:Jörg Mayer1-2/+3
- Add checking for linker flags - Install plugins with the name including the Wireshark version. This will make it easier to find matching plugin versions if files get just copied over. svn path=/trunk/; revision=32231
2010-02-24- Remove the lib prefix for plugin names.Jörg Mayer1-4/+2
- Remove a (resolved) comment. - Add a commented out line how to add version infos to the plugin's file name. svn path=/trunk/; revision=31995
2010-01-28Fix gcc -Wshadow warning.Bill Meier1-3/+3
svn path=/trunk/; revision=31721
2009-11-17Beginnings of enabling static builds. Still to do:Jörg Mayer1-1/+1
* Add -static * Registration may need different handling * Add plugins * Build error in wslua svn path=/trunk/; revision=30987
2009-11-07cmake will now honor -Werror if configured (default: on)Jörg Mayer1-3/+15
svn path=/trunk/; revision=30852
2009-10-19Added cast to (void *) for pointers used in printf format %p.Stig Bjørlykke1-17/+17
svn path=/trunk/; revision=30614
2009-10-09Use register_dissector_files in asn1 pluginKovarththanan Rajaratnam1-25/+3
svn path=/trunk/; revision=30434
2009-10-06Build plugins with cmake on OSX.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=30373
2009-09-25Fix build of make and asn1 plugins.Jörg Mayer1-0/+5
svn path=/trunk/; revision=30144
2009-09-21CMake:Jörg Mayer1-0/+6
- Add opcua to the list of plugins to build - Link the gtk stuff statically into wireshark - Beginnings of "make install" - Change a few things about install paths svn path=/trunk/; revision=30029
2009-09-15Save some memory: Don't statically allocate ett[] arrays used "dynamically".Bill Meier1-1/+1
svn path=/trunk/; revision=29934
2009-09-15Build the asn1 plugin. The only problem(?) is, that it isJörg Mayer1-0/+69
name libasn1.so instead of asn1.so svn path=/trunk/; revision=29919
2009-09-13Run checkapi on the dissector header filesJeff Morriss2-2/+2
svn path=/trunk/; revision=29883
2009-09-09We no longer support the old plugin API so remove it completely from the ↵Kovarththanan Rajaratnam1-1/+1
build system svn path=/trunk/; revision=29821
2009-08-21(Minor) Remove unneeded #includes.Bill Meier2-10/+1
svn path=/trunk/; revision=29492
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29344
2009-08-03Add some null checks.Gerald Combs1-1/+45
svn path=/trunk/; revision=29285
2009-05-01From Reinhard Speyerer:Jaap Keuter1-1/+1
This patch fixes several misspellings/typos in Wireshark SVN revision 28201. svn path=/trunk/; revision=28205
2009-04-16Fix Win64 compilation problems in the plugins directory.Gerald Combs1-1/+1
svn path=/trunk/; revision=28064
2009-03-02Disable manifest building for our DLLs. This attempts to fix bug 3272.Gerald Combs1-3/+0
svn path=/trunk/; revision=27579
2009-02-22From Robert Groenenberg:Jaap Keuter1-1/+1
As of version 0.99.8, there has been an annoying problem in the ASN.1 dissector: when using a 'type table' which discribes the ASN.1 syntax of the traced packets, wireshark would crash on the very first packet. The cause for the crash is an out-of- boundry write, detected by g_free(). svn path=/trunk/; revision=27507
2009-02-02add missing mt.exe calls, to include manifest files into exe / dll filesUlf Lamping1-0/+3
svn path=/trunk/; revision=27357
2008-12-22Fix some typos and spelling (mostly in text strings)Bill Meier1-3/+3
svn path=/trunk/; revision=27085
2008-12-19Back out r27047 and r27053.Gerald Combs1-2/+2
svn path=/trunk/; revision=27062
2008-12-18Update calls to proto_tree_add_bytes_format to reflect r27047.Gerald Combs1-2/+2
svn path=/trunk/; revision=27053
2008-10-31Fix some "format not a string literal and no format arguments" warnings.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=26652
2008-10-28#include <emem.h>Bill Meier1-0/+1
svn path=/trunk/; revision=26602
2008-10-28Minor cleanup for proto_register & proto_reg_handoff ...Bill Meier1-31/+32
svn path=/trunk/; revision=26601
2008-08-26#include <emem.h> not req'dBill Meier1-1/+0
svn path=/trunk/; revision=26095
2008-07-29Allow checkapis target to work in out-of-tree builds (s#../../#$(top_srcdir)).Jeff Morriss1-1/+1
Also use $(top_builddir) instead of ../../ in a couple of other spots. svn path=/trunk/; revision=25863
2008-07-02Add Makefile.common files for epan/dfilter and epan/ftypes.Guy Harris1-0/+3
Add checkapi rules to Makefile.am files. svn path=/trunk/; revision=25656
2008-07-01Put printf into a separate "termoutput" API group. For most files,Guy Harris1-1/+1
check for it - but not for TShark plugins, as they are expected to print to the standard output. svn path=/trunk/; revision=25653
2008-06-26Add support for "API groups" in checkAPIs.pl. Make the "prohibited"Gerald Combs1-1/+1
and "deprecated" groups the default. Add an "abort" group for code that shouldn't exit the program. Update the makefiles to call "checkAPIs.pl -g abort" for dissectors. Remove a dependency on "cat" in checkAPIs.pl. svn path=/trunk/; revision=25614
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss2-9/+9
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-05-14fix missing brackets causing uninitialized hidden_itemTomas Kukosa1-2/+3
svn path=/trunk/; revision=25300
2008-05-14From Anders Broman:Tomas Kukosa1-58/+118
Patches for broken build svn path=/trunk/; revision=25298
2008-05-09Use PROTO_ITEM_SET_HIDDEN().Anders Broman1-25/+26
Fix ID marking Add checkapi to makefiles svn path=/trunk/; revision=25260
2008-05-05Make it possible to run checkapi on all plugins trough makefile.nmakeAnders Broman1-0/+4
Note: Commented out in the plugins giving errors for now. svn path=/trunk/; revision=25231
2008-04-14Get rid of some unused functions to prevent -Werror from causing the compile ↵Jörg Mayer1-0/+6
to fail svn path=/trunk/; revision=25026
2008-04-07Remove GTK1 code.Stephen Fisher1-3/+1
svn path=/trunk/; revision=24827
2008-03-29Remove the pre-release flag from FILEFLAGS in the resource file.Jaap Keuter1-2/+2
svn path=/trunk/; revision=24757
2008-03-01Create proper dependancies for plugin.cJaap Keuter1-1/+2
svn path=/trunk/; revision=24520
2008-02-27Quote argument to test in plugins Makefiles, as proposed by Greg A. Woods.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=24488
2008-02-18If we have an SVN revision number, use it as the build number under WindowsGerald Combs1-1/+1
instead of "0". svn path=/trunk/; revision=24376
2008-02-05Rewrote some prohibited APIs in plugins/ (sprintf, strcpy, strcat).Stig Bjørlykke1-3/+3
svn path=/trunk/; revision=24274
2007-08-27Add .c.obj:: inference rule (to cause "batch compile") Bill Meier1-0/+3
svn path=/trunk/; revision=22696
2007-08-25get users of oid_resolv to use the new oids, rollout packet-snmp.cLuis Ontanon3-2/+4
svn path=/trunk/; revision=22651
2007-05-27Clean up white space.Guy Harris1-2/+3
svn path=/trunk/; revision=21962
2007-05-27Get rid of trailing blank lines.Guy Harris1-1/+0
svn path=/trunk/; revision=21961