wireshark/plugins
Guy Harris 1ca8d227a2 From Lars Roland: have "make clean" and "make distclean" clean up the
new Cisco VoIP plugins.

svn path=/trunk/; revision=10521
2004-03-30 18:45:04 +00:00
..
acn
artnet
asn1 Make "epan_init()" take, as additional arguments, pointers to routines 2004-03-23 21:19:58 +00:00
ciscosm From Duncan Sargeant: include "moduleinfo.h" so that the plugins get the 2004-03-30 18:30:28 +00:00
docsis From Brian Wheeler: DOCSIS 2.0 support. 2004-03-17 06:55:03 +00:00
enttec
giop
gryphon
irda Add the URL of the specifications page. 2004-03-08 23:19:14 +00:00
lwres
megaco
mgcp
pcli
rdm
rlm From Duncan Sargeant: include "moduleinfo.h" so that the plugins get the 2004-03-30 18:30:28 +00:00
rtnet
rudp From Duncan Sargeant: include "moduleinfo.h" so that the plugins get the 2004-03-30 18:30:28 +00:00
v5ua Note to self: If you update the code, you should update the docs too. 2004-03-02 23:45:34 +00:00
.cvsignore
Makefile.am From Duncan Sargeant: Cisco SS7 RUDP, RLM, and Session Management 2004-03-25 11:21:07 +00:00
Makefile.nmake From Lars Roland: have "make clean" and "make distclean" clean up the 2004-03-30 18:45:04 +00:00
README.interface
Xass-list Update for Tomas Kukosa's new APIs to get the parent and the 2004-03-26 00:01:32 +00:00
Xplugin_api.c Update for Tomas Kukosa's new APIs to get the parent and the 2004-03-26 00:01:32 +00:00
Xplugin_api.h Update for Tomas Kukosa's new APIs to get the parent and the 2004-03-26 00:01:32 +00:00
Xplugin_api_decls.h Update for Tomas Kukosa's new APIs to get the parent and the 2004-03-26 00:01:32 +00:00
Xplugin_table.h Update for Tomas Kukosa's new APIs to get the parent and the 2004-03-26 00:01:32 +00:00
plugin_api.c
plugin_api.h Make "epan_init()" take, as additional arguments, pointers to routines 2004-03-23 21:19:58 +00:00
plugin_api_decls.h
plugin_api_defs.h
plugin_api_list.c From Tomas Kukosa: add APIs to get the parent of a protocol tree item 2004-03-25 23:55:21 +00:00
plugin_gen.py
plugin_table.h

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.