From: Eric Leblond Date: Sat, 5 Sep 2020 20:57:23 +0000 (+0200) Subject: ebpf: fix invalid description in doc string X-Git-Tag: suricata-6.0.0-rc1~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6494abc6b16239bbdf3b81f1ecf0204a16392ecb;p=thirdparty%2Fsuricata.git ebpf: fix invalid description in doc string --- diff --git a/src/util-ebpf.c b/src/util-ebpf.c index d7c0484c92..b622b6ca00 100644 --- a/src/util-ebpf.c +++ b/src/util-ebpf.c @@ -675,10 +675,10 @@ typedef bool (*OpFlowForKey)(struct flows_stats * flowstats, LiveDevice*dev, voi int mapfd, int cpus_count); /** - * Bypassed flows cleaning for IPv4 + * Bypassed flows iterator for IPv4 * * This function iterates on all the flows of the IPv4 table - * looking for timeouted flow to delete from the flow table. + * running a callback function on each flow. */ static int EBPFForEachFlowV4Table(ThreadVars *th_v, LiveDevice *dev, const char *name, struct timespec *ctime, @@ -784,10 +784,10 @@ static int EBPFForEachFlowV4Table(ThreadVars *th_v, LiveDevice *dev, const char } /** - * Bypassed flows cleaning for IPv6 + * Bypassed flows iterator for IPv6 * * This function iterates on all the flows of the IPv4 table - * looking for timeouted flow to delete from the flow table. + * running a callback function on each flow. */ static int EBPFForEachFlowV6Table(ThreadVars *th_v, LiveDevice *dev, const char *name,