aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugin_table.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-29 08:44:53 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-29 08:44:53 +0000
commitc873f79156f1ad7cd04168d9dca7d3a322c7ae3f (patch)
treead1052c0e6fa256db7900ff529de5064cb607e6e /plugins/plugin_table.h
parentd76a4172a628adee57cf34155782a31a9444b930 (diff)
Support for capturing on, and reading captures from, OpenBSD firewall
logging virtual interface, from Mike Frantzen. svn path=/trunk/; revision=4616
Diffstat (limited to 'plugins/plugin_table.h')
-rw-r--r--plugins/plugin_table.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/plugin_table.h b/plugins/plugin_table.h
index 7dd259811f..c40fbd8644 100644
--- a/plugins/plugin_table.h
+++ b/plugins/plugin_table.h
@@ -1,7 +1,7 @@
/* plugin_table.h
* Table of exported addresses for Ethereal plugins.
*
- * $Id: plugin_table.h,v 1.36 2002/01/05 04:12:17 gram Exp $
+ * $Id: plugin_table.h,v 1.37 2002/01/29 08:44:51 guy Exp $
*
* Ethereal - Network traffic analyzer
* Copyright 2000 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -32,6 +32,7 @@ typedef gint (*addr_check_col)(column_info*, gint);
typedef void (*addr_col_clear)(column_info*, gint);
typedef void (*addr_col_add_fstr)(column_info*, gint, gchar*, ...);
typedef void (*addr_col_append_fstr)(column_info*, gint, gchar*, ...);
+typedef void (*addr_col_prepend_fstr)(column_info*, gint, gchar*, ...);
typedef void (*addr_col_add_str)(column_info*, gint, const gchar*);
typedef void (*addr_col_append_str)(column_info*, gint, gchar*);
typedef void (*addr_col_set_str)(column_info*, gint, gchar*);
@@ -215,6 +216,7 @@ typedef struct {
addr_col_clear p_col_clear;
addr_col_add_fstr p_col_add_fstr;
addr_col_append_fstr p_col_append_fstr;
+ addr_col_prepend_fstr p_col_prepend_fstr;
addr_col_add_str p_col_add_str;
addr_col_append_str p_col_append_str;
addr_col_set_str p_col_set_str;