aboutsummaryrefslogtreecommitdiffstats
path: root/epan/funnel.h
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-03 12:07:10 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-10-03 12:07:10 +0000
commit096231ef6f439fcc84e685a57eb308a7225f4b5b (patch)
treea6c0d2ffbc11271dd3103fb35164112ba3cda3f6 /epan/funnel.h
parent80a73e085e831cc1b18b1781b1f36557317e006b (diff)
more Lua APIs:
- set_filter() : sets the main window filter - reload() : reloads the current capture file - copy_to_clipboard() : copies its first arfg to the clipboard - open_capture_file() : opens a capture file for viewing (still broken) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19404 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/funnel.h')
-rw-r--r--epan/funnel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/funnel.h b/epan/funnel.h
index 3cd7eb22ea..65264a896a 100644
--- a/epan/funnel.h
+++ b/epan/funnel.h
@@ -83,6 +83,10 @@ typedef struct _funnel_ops_t {
gpointer user_data);
void (*retap_packets)(void);
+ void (*copy_to_clipboard)(GString *str);
+ void (*set_filter)(const char*);
+ gboolean (*open_file)(const char* fname, const char* filter, char** error);
+ void (*reload)(void);
} funnel_ops_t;