aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
AgeCommit message (Collapse)AuthorFilesLines
2002-02-27From Joerg Mayer:Guy Harris1-2/+2
In the "configure.in" files, add -D_U_="__attribute__((unused))" to CFLAGS if we're using GCC, and add -D_U_="" otherwise, so _U_ can be used to mark arguments as unused. Add -D_U_="" arguments to the Makefile.nmake files as well, so _U_ works with Microsoft Visual C++ as well. Add comments and RCS IDs to the Makefile.nmake files that don't already have them. svn path=/trunk/; revision=4824
2002-01-30Updated GIOP plugins, from Frank Singleton.Guy Harris2-349/+286
svn path=/trunk/; revision=4631
2002-01-21Include files from the "epan" directory and subdirectories thereof withGuy Harris3-6/+6
"epan/..." pathnames, so as to avoid collisions with header files in any of the directories in which we look (e.g., "proto.h", as some other package has its own "proto.h" file which it installs in the top-level include directory). Don't add "-I" flags to search "epan", as that's no longer necessary (and we want includes of "epan" headers to fail if the "epan/" is left out, so that we don't re-introduce includes lacking "epan/"). svn path=/trunk/; revision=4586
2001-12-19From Bernd Becker: don't clear COL_INFO until the GIOP subdissecrors areGuy Harris2-2/+2
fixed to put something interesting there, fix the GIOP dissector to restore the Protocol column if no heuristic dissector succeeded, and fix up the plugin GIOP subdissectors to use "col_set_str()" to set the Protocol column. svn path=/trunk/; revision=4424
2001-12-17Now that the GIOP dissector sets "pinfo->current_proto" before callingGuy Harris2-4/+0
subdissectors, the subdissectors don't have to set it themselves. svn path=/trunk/; revision=4417
2001-12-12From Motonori Shindo:Guy Harris1-3/+3
fix a bogus batch mode inference rule of make, so that "vc60.pdb" files are created in the proper directory; delete ".pdb" files in a "nmake -f Makefile.nmake clean"; include the text2pcap and mergecap ".pdb" files in the Windows binary distribution. svn path=/trunk/; revision=4385
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"Guy Harris2-4/+4
structure to the "packet_info" structure; only stuff that's permanently stored with each frame should be in the "frame_data" structure, and the "column_info" structure is not guaranteed to hold the column values for that frame at all times - it was only in the "frame_data" structure so that it could be passed to dissectors, and, as all dissectors are now passed a pointer to a "packet_info" structure, it could just as well be put in the "packet_info" structure. That saves memory, by shrinking the "frame_data" structure (there's one of those per frame), and also lets us clean up the code a bit. svn path=/trunk/; revision=4370
2001-10-31Sigh. Well, if you make the function declarations external, that meansGuy Harris2-0/+4
that they're external when the plugin is compiled, and there's no definition to satisfy the extern, so plugins fail to compile. Add a "plugins/plugin_api_defs.h" header file that defines them, and include that in one (and only one) source file for a particular plugin. svn path=/trunk/; revision=4117
2001-10-17Enable building of the coseventcomm plugin on Win32.Gilbert Ramirez1-1/+3
Some of these changs are from Frank Singleton, some are mine. svn path=/trunk/; revision=4035
2001-07-21Update .cvsignore.Guy Harris1-0/+3
svn path=/trunk/; revision=3760
2001-07-20CosEventComm dissector, from Frank Singleton.Guy Harris4-4/+867
svn path=/trunk/; revision=3756
2001-07-20Get rid of zero-length arrays.Guy Harris1-0/+4
svn path=/trunk/; revision=3753
2001-07-20Added .cvsignoreEd Warnicke1-0/+19
svn path=/trunk/; revision=3742
2001-07-19GIOP CosNaming support, from Frank Singleton.Guy Harris10-0/+2347
svn path=/trunk/; revision=3740