aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-07-19 09:33:17 +0000
committerGuy Harris <guy@alum.mit.edu>2002-07-19 09:33:17 +0000
commit2b39f15499ac6580ef12ec15cee192b56a88fbc0 (patch)
tree47417339a0fc8420b4d49d45793598de41adddd6
parent91ab6eb809d139ae563a905677824e1c7a2b3622 (diff)
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
-rw-r--r--AUTHORS13
-rw-r--r--doc/README.plugins10
-rw-r--r--doc/ethereal.pod.template2
3 files changed, 16 insertions, 9 deletions
diff --git a/AUTHORS b/AUTHORS
index 53e248be51..b461d39f63 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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
diff --git a/doc/README.plugins b/doc/README.plugins
index c8341cffb0..b7adaaa732 100644
--- a/doc/README.plugins
+++ b/doc/README.plugins
@@ -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:
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index 4490032977..c22b21a4f5 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -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.