diff options
author | Luis Ontanon <luis.ontanon@gmail.com> | 2006-10-03 12:07:10 +0000 |
---|---|---|
committer | Luis Ontanon <luis.ontanon@gmail.com> | 2006-10-03 12:07:10 +0000 |
commit | 161b9a55eaecb0acac3751bb944bb93551406c4a (patch) | |
tree | a6c0d2ffbc11271dd3103fb35164112ba3cda3f6 /tap-funnel.c | |
parent | 179039652b0c64691f9f13d2ae3451fca3252700 (diff) | |
download | wireshark-161b9a55eaecb0acac3751bb944bb93551406c4a.tar.gz wireshark-161b9a55eaecb0acac3751bb944bb93551406c4a.tar.bz2 wireshark-161b9a55eaecb0acac3751bb944bb93551406c4a.zip |
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 'tap-funnel.c')
-rw-r--r-- | tap-funnel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tap-funnel.c b/tap-funnel.c index 10711afc0c..95784f96bc 100644 --- a/tap-funnel.c +++ b/tap-funnel.c @@ -98,6 +98,9 @@ static const funnel_ops_t funnel_ops = { /*...,*/ NULL, funnel_logger, + NULL, + NULL, + NULL, NULL }; |