From 6494abc6b16239bbdf3b81f1ecf0204a16392ecb Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Sat, 5 Sep 2020 22:57:23 +0200 Subject: [PATCH] ebpf: fix invalid description in doc string --- src/util-ebpf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, -- 2.47.2