aboutsummaryrefslogtreecommitdiffstats
path: root/epan/funnel.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-10-03 12:07:10 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-10-03 12:07:10 +0000
commit161b9a55eaecb0acac3751bb944bb93551406c4a (patch)
treea6c0d2ffbc11271dd3103fb35164112ba3cda3f6 /epan/funnel.h
parent179039652b0c64691f9f13d2ae3451fca3252700 (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) svn path=/trunk/; revision=19404
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;