From Richard Urwin: fixes for README.plugins.

Combine the two entries for Anand Narwani in the AUTHORS file and the
Ethereal man page list of contributors.

svn path=/trunk/; revision=5893
This commit is contained in:
Guy Harris 2002-07-19 09:33:17 +00:00
parent 91ab6eb809
commit 2b39f15499
3 changed files with 16 additions and 9 deletions

13
AUTHORS
View File

@ -1303,6 +1303,11 @@ Yasuhiro Shirasaki <yasuhiro@gnome[AT]gr.jp> {
Anand V. Narwani <anarwani[AT]cisco.com> {
gtk/Makefile.am fix
DOCSIS support, including support for "Ethernet" captures where
the raw frame is a DOCSIS frame rather than an Ethernet
frame (some Cisco cable-modem head-end gear can send out a
trace of all traffic on an Ethernet, but what it sends are
the raw bytes of DOCSIS frames, not Ethernet frames)
}
Christopher K. St. John <cks[AT]distributopia.com> {
@ -1319,12 +1324,8 @@ Liviu Daia <Liviu.Daia[AT]imar.ro> {
from the command line
}
Anand V. Narwani <anarwani[AT]cisco.com> {
DOCSIS support, including support for "Ethernet" captures where
the raw frame is a DOCSIS frame rather than an Ethernet
frame (some Cisco cable-modem head-end gear can send out a
trace of all traffic on an Ethernet, but what it sends are
the raw bytes of DOCSIS frames, not Ethernet frames)
Richard Urwin <rurwin[AT]schenck.co.uk> {
Developer documentation fixes and updates
}
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to

View File

@ -1,4 +1,4 @@
$Id: README.plugins,v 1.6 2002/07/06 20:40:43 guy Exp $
$Id: README.plugins,v 1.7 2002/07/19 09:33:16 guy Exp $
Plugins
@ -23,6 +23,7 @@ definitions on OSes which don't need this).
This header is optional and is described in greater detail further on.
#include <gmodule.h>
This header is required to define G_MODULE_EXPORT, which must be used
when defining constants and functions exported by the plugin.
@ -31,6 +32,11 @@ you include "gmodule.h"; however, "glib.h" is protected from multiple
inclusion by #ifdefs, so it's safe to include it after including
"gmodule.h".
#include "plugins/plugin_api_defs.h"
Only include this in one source file if you have more than one. It defines,
(as opposed to declares,) the function pointer variables that the plugin uses
to reference the address table.
2 New exported constants in packet-xxx.c
Plugins need to provide the following exported constants:
@ -148,7 +154,7 @@ CFLAGS=/DHAVE_CONFIG_H /I../.. /I../../wiretap \
OBJECTS=packet-xxx.obj
xxx.dll xxx.exp xxx.lib : packet-xxx.obj ..\plugin_api.obj
link -dll /out:xxx.dll packet-mgcp.obj ..\plugin_api.obj \
link -dll /out:xxx.dll packet-xxx.obj ..\plugin_api.obj \
$(GLIB_DIR)\glib-$(GLIB_VERSION).lib
clean:

View File

@ -1460,7 +1460,7 @@ B<http://www.ethereal.com>.
Christopher K. St. John <cks[AT]distributopia.com>
Nix <nix[AT]esperi.demon.co.uk>
Liviu Daia <Liviu.Daia[AT]imar.ro>
Anand V. Narwani <anarwani[AT]cisco.com>
Richard Urwin <rurwin[AT]schenck.co.uk>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.