diff options
author | Evan Huus <eapache@gmail.com> | 2012-09-15 13:58:57 +0000 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2012-09-15 13:58:57 +0000 |
commit | dd01cc049038b934c19a33c4d2d01082ee58ca67 (patch) | |
tree | 7107823e4712007d0b58a472742471c52940d6e3 /ui/cli/tap-funnel.c | |
parent | 5a7af5d6d96c647d75be8fb0f57e9bbe3e530fb2 (diff) | |
download | wireshark-dd01cc049038b934c19a33c4d2d01082ee58ca67.tar.gz wireshark-dd01cc049038b934c19a33c4d2d01082ee58ca67.tar.bz2 wireshark-dd01cc049038b934c19a33c4d2d01082ee58ca67.zip |
From Niels Widger via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7725
Add get_filter method to Wireshark's Lua interface (to correspond with the
already-exposed set_filter method).
svn path=/trunk/; revision=44916
Diffstat (limited to 'ui/cli/tap-funnel.c')
-rw-r--r-- | ui/cli/tap-funnel.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/cli/tap-funnel.c b/ui/cli/tap-funnel.c index 79d6ef33c8..0326ca874d 100644 --- a/ui/cli/tap-funnel.c +++ b/ui/cli/tap-funnel.c @@ -30,6 +30,11 @@ #include "config.h" #endif +#include <glib.h> +#include <wiretap/wtap.h> +#include <epan/nstime.h> +#include <epan/proto.h> + #include <epan/funnel.h> #include <stdio.h> #include <epan/stat_cmd_args.h> @@ -112,6 +117,7 @@ static const funnel_ops_t funnel_ops = { NULL, NULL, NULL, + NULL, NULL }; |