aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/lua/packet-lua.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-02-05 20:06:05 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-02-05 20:06:05 +0000
commit2427624d5aa14ebda1ca6d5c74987aca1ff21cb2 (patch)
tree64c5330fac64cc0904d2c77ed72801023838f4ee /plugins/lua/packet-lua.h
parent50d651fe5be3cbc70a245b7a5225b19c79e0c198 (diff)
* move all the tap functions to lua_tap
* change the way taps work (docs coming) * add an at_close method to the textwindow that allows the user to set a callback function to be called when the window is closed svn path=/trunk/; revision=17166
Diffstat (limited to 'plugins/lua/packet-lua.h')
-rw-r--r--plugins/lua/packet-lua.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/lua/packet-lua.h b/plugins/lua/packet-lua.h
index 9b9338aa85..f4cf6f5925 100644
--- a/plugins/lua/packet-lua.h
+++ b/plugins/lua/packet-lua.h
@@ -52,10 +52,6 @@
#define LUA_DISSECTORS_TABLE "dissectors"
#define LUA_INIT_ROUTINES "init_routines"
#define LUA_HANDOFF_ROUTINES "handoff_routines"
-#define LUA_TAP_PACKET "taps"
-#define LUA_TAP_INIT "taps_init"
-#define LUA_TAP_DRAW "taps_draw"
-#define LUA_TAP_RESET "taps_reset"
struct _eth_tvbrange {
tvbuff_t* tvb;
@@ -161,11 +157,7 @@ typedef address* Address;
typedef header_field_info* Field;
#define TAP "Tap"
-typedef struct _eth_tap {
- const gchar* name;
- gchar* filter;
- gboolean registered;
-}* Tap;
+typedef struct _eth_tap* Tap;
#define TEXT_WINDOW "TextWindow"
typedef funnel_text_window_t* TextWindow;