From: Juliana Fajardini Date: Wed, 14 Apr 2021 13:15:59 +0000 (+0100) Subject: ebpf/util: change flow storage to new 'id' type X-Git-Tag: suricata-7.0.0-beta1~1678 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7c1c3c374be0e569e1d644c05e73d29ee9177f4;p=thirdparty%2Fsuricata.git ebpf/util: change flow storage to new 'id' type --- diff --git a/src/util-ebpf.c b/src/util-ebpf.c index 94236aff5b..83526de8cc 100644 --- a/src/util-ebpf.c +++ b/src/util-ebpf.c @@ -61,7 +61,7 @@ #define BYPASSED_FLOW_TIMEOUT 60 static LiveDevStorageId g_livedev_storage_id = { .id = -1 }; -static int g_flow_storage_id = -1; // TODO change this in a different commit +static FlowStorageId g_flow_storage_id = { .id = -1 }; struct bpf_map_item { char iface[IFNAMSIZ];