summaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorlaforge <laforge>2005-11-20 14:41:23 +0000
committerlaforge <laforge>2005-11-20 14:41:23 +0000
commitc2ad18e846a6862791762b512310707738985780 (patch)
tree7a1ed3af01b8c97153c16383317163914805e847 /filter
parentb25637a58e9ab853ac410fcd823546256ab3002b (diff)
some plugins support packet and flow data types
Diffstat (limited to 'filter')
-rw-r--r--filter/ulogd_filter_IFINDEX.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/ulogd_filter_IFINDEX.c b/filter/ulogd_filter_IFINDEX.c
index 886592b..b386f4a 100644
--- a/filter/ulogd_filter_IFINDEX.c
+++ b/filter/ulogd_filter_IFINDEX.c
@@ -132,12 +132,12 @@ static struct ulogd_plugin ifindex_plugin = {
.input = {
.keys = ifindex_inp,
.num_keys = ARRAY_SIZE(ifindex_inp),
- .type = ULOGD_DTYPE_PACKET,
+ .type = ULOGD_DTYPE_PACKET | ULOGD_DTYPE_FLOW,
},
.output = {
.keys = ifindex_keys,
.num_keys = ARRAY_SIZE(ifindex_keys),
- .type = ULOGD_DTYPE_PACKET,
+ .type = ULOGD_DTYPE_PACKET | ULOGD_DTYPE_FLOW,
},
.interp = &interp_ifindex,