wireshark/plugins
Guy Harris 1d4abd1568 Subdissectors must be called regardless of whether a protocol tree is
being built.

svn path=/trunk/; revision=9174
2003-12-05 09:25:41 +00:00
..
acn Fix the copyright notices (Gerald has the copyright on Ethereal). 2003-11-17 22:34:25 +00:00
artnet Fix the copyright notices (Gerald has the copyright on Ethereal). 2003-11-17 22:34:25 +00:00
asn1 From some reason, at least on Mac OS X 10.3, the change to have the 2003-12-04 22:37:52 +00:00
docsis From Anand Narwani: fix bitmask for Active Grants field. 2003-11-12 23:17:37 +00:00
enttec Fix the .cvsignore files. 2003-11-17 22:29:21 +00:00
giop Tweak the introductory comment. 2003-11-17 22:31:27 +00:00
gryphon Fix the copyright notices (Gerald has the copyright on Ethereal). 2003-11-17 22:34:25 +00:00
lwres Use "$(OBJECTS)" whenever a complete list of .obj files appears, rather 2003-11-06 09:05:14 +00:00
megaco Use "$(OBJECTS)" whenever a complete list of .obj files appears, rather 2003-11-06 09:05:14 +00:00
mgcp Subdissectors must be called regardless of whether a protocol tree is 2003-12-05 09:25:41 +00:00
pcli Fix the copyright notices (Gerald has the copyright on Ethereal). 2003-11-17 22:34:25 +00:00
rdm corrected cut and paste errors, makefile was unchanged copied from rtnet 2003-11-18 19:18:45 +00:00
rtnet From Erwin Rol: RTCFG support. 2003-11-27 21:09:43 +00:00
.cvsignore xyzzy 2003-09-29 19:32:14 +00:00
Makefile.am From Erwin Rol: initial ENTTEC support and RDM support. 2003-11-17 20:57:14 +00:00
Makefile.nmake From Lars Roland: put missing "enttec" into "all" list. 2003-11-18 19:31:51 +00:00
README.interface From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
Xass-list From Tomas Kukosa: add "decode_enumerated_bitfield_shifted()", which is 2003-12-01 23:42:32 +00:00
Xplugin_api.c From Tomas Kukosa: add "decode_enumerated_bitfield_shifted()", which is 2003-12-01 23:42:32 +00:00
Xplugin_api.h From Tomas Kukosa: add "decode_enumerated_bitfield_shifted()", which is 2003-12-01 23:42:32 +00:00
Xplugin_api_decls.h From Tomas Kukosa: add "decode_enumerated_bitfield_shifted()", which is 2003-12-01 23:42:32 +00:00
Xplugin_table.h From Tomas Kukosa: add "decode_enumerated_bitfield_shifted()", which is 2003-12-01 23:42:32 +00:00
plugin_api.c From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
plugin_api.h There's no need to #define tvb_get_string or tvb_get_stringz - that's 2003-10-29 10:37:28 +00:00
plugin_api_decls.h From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00
plugin_api_defs.h Removed trailing whitespaces from .h and .c files using the 2002-08-28 20:41:00 +00:00
plugin_api_list.c From Tomas Kukosa: add "decode_enumerated_bitfield_shifted()", which is 2003-12-01 23:42:32 +00:00
plugin_gen.py The Python 1.5.2 I have installed didn't seem to like "+=", so use "x = 2003-08-23 07:34:31 +00:00
plugin_table.h From Matthijs Melchior: generate all declarations and definitions for 2003-07-18 03:02:12 +00:00

README.interface

README.interface

When developing a plugin in the Win32 world, it is nessecary
to explicitly export addresses from the main process to the
plugin.  ethereal does have a mechanism for this, and it uses
the file 'plugin_api_list.c' to list declarations for everything
that needs to be exported.

The build process of ethereal needs this list in 5 different forms.

These are generated by a Python script and saved in the X* files
in this directory.

I do not have a real C parser in Python to read the input file...,
so I have used 'gcc -aux-info xyzzy ...' to clean up any formatting
preferences in the input file and create the file named 'xyzzy'
that contains a neatly formatted list of declarations.  This list
can be parsed with a regular expression to extract the required
info.

Use the following procedure when updateing the plugin_api_list.c file:

nmake -f Makefile.nmake xyzzy
nmake -f Makefile.nmake

The 'xyzzy' makefile target is the only target that depends on gcc.
This can be done on a Unix machine or you can use cygwin gcc.