aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop/packet-coseventcomm.c
AgeCommit message (Collapse)AuthorFilesLines
2004-01-05removed some MSVC warnings (level 3)Ulf Lamping1-1/+1
svn path=/trunk/; revision=9561
2003-09-05- Make --enable-static work again (configure.in, Makefile.am)Jörg Mayer1-2/+2
- get rid of ...-static.o files in the build process (now done via config.h instead of compiler flag) - make packet-rtnet link statically (remove one unused function, rename another one) svn path=/trunk/; revision=8389
2002-08-28Removed trailing whitespaces from .h and .c files using theJörg Mayer1-339/+339
winapi_cleanup tool written by Patrik Stridvall for the wine project. svn path=/trunk/; revision=6116
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hJörg Mayer1-8/+0
equivalents for the plugins/ directory. svn path=/trunk/; revision=5929
2002-07-17From Joerg Mayer:Guy Harris1-9/+0
dftest.c: Remove #if-0-ed includes packet-ieee80211.c, packet-wtls.c, packet-afp.c, packet-wsp.c, packet-wtp.c, ethereal_gen.py: Remove redundant include varargs (already in snprintf.h, and required only for snprintf.h) Remove unused include of snprintf.h from files not using "snprintf()". svn path=/trunk/; revision=5889
2002-05-06Remove the unused "offset_saved" variable, as per the changes toGuy Harris1-1/+0
"ethereal_gen.py" not to generate the line setting it. svn path=/trunk/; revision=5409
2002-05-04Update the dissectors (by hand) to match the changes toGuy Harris1-11/+15
"ethereal_gen.py". svn path=/trunk/; revision=5391
2002-01-30Updated GIOP plugins, from Frank Singleton.Guy Harris1-0/+52
svn path=/trunk/; revision=4631
2002-01-21Include files from the "epan" directory and subdirectories thereof withGuy Harris1-2/+2
"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 Harris1-1/+1
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 Harris1-2/+0
subdissectors, the subdissectors don't have to set it themselves. svn path=/trunk/; revision=4417
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"Guy Harris1-2/+2
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 Harris1-0/+2
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-07-20CosEventComm dissector, from Frank Singleton.Guy Harris1-0/+847
svn path=/trunk/; revision=3756