aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
AgeCommit message (Collapse)AuthorFilesLines
2012-06-01No more GIOP plugins, so get rid of the directory for the former plugins.Guy Harris13-789/+0
svn path=/trunk/; revision=42978
2012-06-01Make packet-coseventcomm.c a bultin dissectorAnders Broman1-768/+0
svn path=/trunk/; revision=42976
2012-06-01Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt if ↵Bill Meier1-1/+1
Makefile.common is changed svn path=/trunk/; revision=42972
2012-06-01Windows: Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt ↵Bill Meier1-2/+2
if Makefile.common is changed ToDo: ditto for Makefile.am ? svn path=/trunk/; revision=42971
2012-06-01Make the cosnaming dissector a builtin dissector.Anders Broman3-1578/+1
svn path=/trunk/; revision=42968
2012-06-01Make the tango dissector a builtin dissector.Anders Broman3-4414/+1
svn path=/trunk/; revision=42967
2012-06-01parlay changes to CmakeAnders Broman1-18/+0
svn path=/trunk/; revision=42965
2012-06-01Make the parlay dissector a buil tin dissector.Anders Broman2-105136/+0
svn path=/trunk/; revision=42964
2012-05-30Dissable -WerrorAnders Broman1-3/+3
svn path=/trunk/; revision=42928
2012-05-30Forgot to change the name to giopAnders Broman1-8/+6
svn path=/trunk/; revision=42927
2012-05-30Add files to use 'new plugin build style'Anders Broman9-125/+267
svn path=/trunk/; revision=42924
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss2-2/+2
from makefiles (and thus from the buildbot). The intention is to be able to tell when a human is running the tool so we can provide more code-review guidance. As a starter, enable the "too many proto_tree_add_text() calls" check when a human is running the tool. svn path=/trunk/; revision=41943
2012-01-29Add *.sbr files to the clean target.Anders Broman1-1/+1
svn path=/trunk/; revision=40761
2011-11-29From c.David via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6527Alexis La Goutte4-16/+1016
corba dissector generator improvement Patch 2 : create a defaulf field hf_operationrequest which provides the requested operation on both the resquest and the reply messages. From me : Regenerate GIOP Plugins svn path=/trunk/; revision=40038
2011-11-29From c.David via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6527Alexis La Goutte3-337/+337
corba dissector generator improvement Patch 1 : field names is used in dissection instead of "enum value" which is not clear From me : Regenerate GIOP Plugins svn path=/trunk/; revision=40037
2011-11-18Regenerate GIOP dissector plugins (after change in generator !) for fix ↵Alexis La Goutte4-9493/+4689
Warning found by Clang (>100 !) svn path=/trunk/; revision=39934
2011-11-18Regenerate GIOP dissector plugins (after change in generator !) with ↵Alexis La Goutte2-1074/+958
following commmands : :~/wireshark/tools$ ../idl2wrs ../idl/cosnaming.idl > ../plugins/giop/packet-cosnaming.c :~/wireshark/tools$ ../idl2wrs ../idl/coseventcomm.idl > ../plugins/giop/packet-coseventcomm.c :~/wireshark/tools$ ../idl2wrs ../idl/parlay/Parlay.idl > ../plugins/giop/packet-parlay.c :~/wireshark/tools$ ../idl2wrs ../idl/tango.idl > ../plugins/giop/packet-tango.c For packet-cosnaming.c, only some white return change For packet-parley.c, lot of change but only the functions is not in the same order...?! (Order change in 17911) svn path=/trunk/; revision=39932
2011-02-02A bit of Windows makefiles rework and cleanup:Bill Meier1-2/+3
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
2011-01-16Do Windows compile with /WX flag: treat warnings as errors.Bill Meier1-1/+1
svn path=/trunk/; revision=35565
2010-09-24Plugins are not shared libraries, so:Guy Harris1-4/+0
1) don't set thei SOVERSION - run-time-loaded modules don't have an SOVERSION; 2) build them with link mode MODULE, not SHARED, on all platforms. (Fixing 1) also fixes the problem with building them as MODULE on OS X.) svn path=/trunk/; revision=34243
2010-09-23H. Sivank <hsivank@gmail.com>Jörg Mayer1-4/+4
I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201
2010-05-24Refer to the endianness arguments as "encoding" rather thanGuy Harris4-4/+4
"representation" - we already use "representation" to refer to the text representation of fields. Change some routines with an endianness argument to make it a representation argument instead; svn path=/trunk/; revision=32929
2010-05-14Add Cmake stuff to the source distribution so more people can try it out.Jeff Morriss1-5/+6
svn path=/trunk/; revision=32807
2010-05-13Create a new REP_NA value for fields where there are no representationsGuy Harris4-4/+4
from which to choose; use that for protocol fields in some protocols (modify the CORBA generator to use it, and manually update the generated CORBA dissectors accordingly). svn path=/trunk/; revision=32777
2010-04-07Remove some uneeded #includesBill Meier4-8/+0
svn path=/trunk/; revision=32419
2010-04-05Get rid of a bunch of check_col().Anders Broman4-4/+0
svn path=/trunk/; revision=32388
2010-03-18cmake changes:Jörg Mayer1-8/+12
- 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/+8
- 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
2009-11-17Beginnings of enabling static builds. Still to do:Jörg Mayer1-4/+4
* 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-12/+27
svn path=/trunk/; revision=30852
2009-10-06Build plugins with cmake on OSX.Stig Bjørlykke1-0/+8
svn path=/trunk/; revision=30373
2009-09-25Try to add tpg, but it seems it doesn't build with autofoo either.Jörg Mayer1-0/+84
svn path=/trunk/; revision=30151
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-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam4-8/+4
svn path=/trunk/; revision=29340
2009-03-02Disable manifest building for our DLLs. This attempts to fix bug 3272.Gerald Combs1-13/+1
svn path=/trunk/; revision=27579
2009-02-02add missing mt.exe calls, to include manifest files into exe / dll filesUlf Lamping1-0/+12
svn path=/trunk/; revision=27357
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 Harris2-1/+7
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 Morriss1-6/+6
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-09Use PROTO_ITEM_SET_HIDDEN().Anders Broman5-1/+18
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/+3
Note: Commented out in the plugins giving errors for now. svn path=/trunk/; revision=25231
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris1-11/+11
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
2007-03-28Removed /Wx from CFLAGS to allow buildbot to proceedGraham Bloice1-1/+1
svn path=/trunk/; revision=21248
2007-03-28from Gisle Vanem: some more #pragma's that MingW don't likeUlf Lamping1-1/+1
svn path=/trunk/; revision=21240
2007-03-27add missing #pragma warning disable (now using _MSC_VER)Ulf Lamping3-0/+12
svn path=/trunk/; revision=21227
2007-03-27set "WX" and "#pragma warning(disable:4101)"Ulf Lamping2-2/+5
svn path=/trunk/; revision=21222
2007-01-03clean should also remove generated plugin.c and manifest filesUlf Lamping1-2/+5
svn path=/trunk/; revision=20291
2007-01-02Align build target names.Jaap Keuter1-2/+2
svn path=/trunk/; revision=20269